断言void方法junit测试

问题描述

我正在尝试为下面提到的void方法编写测试用例。有人可以帮助我使用正确的assert语句来测试此方法。

   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测试-

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?*/
    }

}

解决方法

如何验证某些函数被调用?

演示:

[Microsoft.AspNetCore.Mvc.HttpPostAttribute("events")]

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...