422 sem categoria associada

    @Test
    public void insertShouldReturnUnprocessableEntityWhenLoggedAsAdminAndNoCategory() throws Exception {
        productDTO.getCategories().clear();
        String jsonBody = objectMapper.writeValueAsString(productDTO);
        //ResultActions aqui 

        //andExpect o status de isUnprocessableEntity()
    }

Atualizado