Junit5 y Maven: método de inicialización @BeforeAll no ser llamado

benthumb:

Le agradecería cualquier indicios de por qué @BeforeAllse omite en el siguiente conjunto de pruebas Junit5. FYI, mi salida cuando se construyo con Maven:

-------------------------------------------------------
 T E S T S
-------------------------------------------------------

14:43:53.681 [main] DEBUG org.benthumb.db2_web_app.tests.CustomerDaoTest - creating test object...
Running org.benthumb.db2_web_app.tests.CustomerDaoTest

14:43:53.689 [main] DEBUG org.benthumb.db2_web_app.tests.CustomerDaoTest - test one executing...

14:43:53.696 [main] DEBUG org.benthumb.db2_web_app.tests.CustomerDaoTest - customer access object is null...
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec

public class CustomerDaoTest {

    private static CustomerDao cDao;
    private static Customer cust;
    private static Properties props;
    private final static String PROP_FILE_NAME = "customer.properties";
    private static InputStream is;
    final static Logger logger = LoggerFactory.getLogger(CustomerDaoTest.class);

    public CustomerDaoTest() {
        logger.debug("creating test object...");
        is = getClass().getClassLoader().getResourceAsStream(PROP_FILE_NAME);
    }

    @BeforeAll
    public static void initializeTestConditions() throws IOException {
        logger.debug("setting up customer access object...");
        props = new Properties();
        if (is != null) {
            props.load(is);
        } else {
            throw new FileNotFoundException("property file '" + PROP_FILE_NAME + "' not found in the classpath");
        }

        cust = new Customer(
                props.getProperty("id"),
                props.getProperty("businessName"),
                props.getProperty("jobTitle"),
                props.getProperty("firstName"),
                props.getProperty("address"),
                props.getProperty("address2"),
                "",
                props.getProperty("city"),
                props.getProperty("state"),
                props.getProperty("country"),
                props.getProperty("phone")
        );
        cDao = new CustomerDao();
        //conn = cDao.conn;
    }

    @Test
    public void testConnectionCustomerDao() throws SQLException {
        //Properties prop = conn.getClientInfo();
        //assertEquals("these two values are equal", prop, null);
        logger.debug("test one executing...");
        Assumptions.assumeTrue(1 == 1);
    }

    @Test
    public void testPersistCustomerDao() {
        if (cDao != null) {
            try {
                cDao.addCustomer(cust);
            } catch (SQLException ex) {
                logger.error(Marker.ANY_MARKER, null, ex.getErrorCode());
            }
        } else {
            logger.debug("customer access object is null...");
        }
        Assumptions.assumeTrue(1 == 1);
    }

}
Danyal Sandeelo:

Su clase no tiene @RunWith(JUnitPlatform.class)anotación. Añadir ella y no tendrán ningún problema.

Supongo que te gusta

Origin http://10.200.1.11:23101/article/api/json?id=410406&siteId=1
Recomendado
Clasificación