简体   繁体   English

断言无效方法 junit 测试

[英]Assert for void methods junit testing

I am trying to write testcase for below mentioned void method.Can somebody help me with correct assert statement to be used for testing this method.我正在尝试为下面提到的 void 方法编写测试用例。有人可以帮助我使用正确的断言语句来测试此方法。

   public void contextInitialized(com.servlet22.ServletContextEvent sce)
{       
    try {
        // if 'corePoolSize' is 0 then it means no idle thread will be there. Only one active job will be functional.
        int corePoolSize = Integer.parseInt(sce.getServletContext().getInitParameter(Constants.WOJOB_JOB_THREAD_NUMBER));
        scheduler = new ScheduledThreadPoolExecutor(corePoolSize);
        //context created
        String woPropFile = EnvironmentBasedConfigurationHandler.getInstance().getValue(sce.getServletContext().getInitParameter(Constants.WO_CONFIGURATION_FILE));
        Properties woProp = new Properties();
        InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream(woPropFile);
        woProp.load(is);
        String ftpConfigFile = EnvironmentBasedConfigurationHandler.getInstance().getValue(sce.getServletContext().getInitParameter(Constants.FTP_CONFIGURATION_FILE));
        String dbConfigFile = EnvironmentBasedConfigurationHandler.getInstance().getValue(sce.getServletContext().getInitParameter(Constants.DB_CONFIGURATION_FILE));
        WOJob.init(ftpConfigFile, dbConfigFile, woProp);
        WOJob woJob = WOJob.getInstance(scheduler);
        scheduler.schedule(woJob, 2, TimeUnit.SECONDS);
        logger.log("WOJobInitializerListener.contextInitialized()", "Configuration file path fetched from web.xml and WOJob has initialized and started");

    } catch (Throwable th) {
        StringWriter sw = new StringWriter();
        th.printStackTrace(new PrintWriter(sw));
        logger.log("WOJob.run()", "Unable to initialize WOJob Thread due to : " + sw.toString());
    }        
}

Junit test for this i have written below - Junit 测试我写在下面 -

public class WOJobInitializerListenertest {
    ServletContext servletCtx = Mockito.mock(ServletContext.class);
    ServletContextEvent sce = Mockito.mock(ServletContextEvent.class);
    @Test
    public void test() {
         Mockito.when(Integer.parseInt(sce.getServletContext().getInitParameter(Constants.WOJOB_JOB_THREAD_NUMBER))).thenReturn(0); 
         Mockito.when(EnvironmentBasedConfigurationHandler.getInstance().getValue(sce.getServletContext().getInitParameter(Constants.WO_CONFIGURATION_FILE))).thenReturn("wo.properties");  
         Mockito.when(EnvironmentBasedConfigurationHandler.getInstance().getValue(sce.getServletContext().getInitParameter(Constants.FTP_CONFIGURATION_FILE))).thenReturn("ftp.config");    

         Mockito.when(EnvironmentBasedConfigurationHandler.getInstance().getValue(sce.getServletContext().getInitParameter(Constants.DB_CONFIGURATION_FILE))).thenReturn("db.config");  
         WOJobInitializerListener el = new WOJobInitializerListener();
        
        /*what assert can be used?*/
    }

}

How about verifying that some functions are called?如何验证是否调用了某些函数?

Demo:演示:

@Mock
ScheduledThreadPoolExecutor scheduler;


/*what assert can be used?*/
verify(scheduler).schedule(anyObject(), 2, TimeUnit.SECONDS);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM