java – 在spring boot中使用testNG进行单元测试需要时间来构建项目

栏目: Java · 发布时间: 7年前

内容简介:翻译自:https://stackoverflow.com/questions/30480046/unit-test-with-testng-in-spring-boot-takes-time-to-build-project
我在 spring

-boot中创建了一个Web应用程序.我正在使用testNG为我的业务层编写单元测试.

我创建了Application类

@SpringBootApplication
public class TestApplication
{
    public static void main(String[] args)
    {
        SpringApplication.run(TestApplication.class, args);
    }

    @Bean
    Mapper mapper()
    {
        List<String> mappingFiles = new ArrayList<String>();
        mappingFiles.add("dozer-mappings.xml");
        return new DozerBeanMapper(mappingFiles);
    }
}

我的测试类看起来像

@ContextConfiguration(classes = { TestApplication.class })
public class CommissionRuleServiceTest extends AbstractTestNGSpringContextTests
{
     @InjectMocks
     @Autowired
     MyService

     @Mock
     MyDAO;

     @BeforeMethod
     public void initMock()
     {
          MockitoAnnotations.initMocks(this);
     }

     @Test(dataProvider = "....")
     ......
     ......
}

当我运行项目时,它会显示休息登录控制台,只需几次小测试就需要20.00秒.

日志中的一些语句是,

DEBUG o.s.c.i.s.PathMatchingResourcePatternResolver – Searching directory  DEBUG o.s.c.a.ConfigurationClassPostProcessor  DEBUG o.s.c.a.ClassPathBeanDefinitionScanner  DEBUG o.s.c.i.s.PathMatchingResourcePatternResolver  DEBUG o.s.b.f.s.DefaultListableBeanFactory  DEBUG o.a.c.b.converters.ArrayConverter  DEBUG org.dozer.loader.xml.XMLParser  DEBUG org.hibernate.cfg.SettingsFactory  DEBUG o.h.cfg.annotations.CollectionBinder  DEBUG o.h.cfg.annotations.TableBinder  DEBUG o.h.p.w.spi.MetamodelGraphWalker – Visiting attribute path : MyEntity  DEBUG o.s.b.f.s.DefaultListableBeanFactory  DEBUG org.hibernate.SQL

为什么要这么“休”时间?我该怎么办?

调查:

@SpringBootApplication注释等效于以下带有默认属性的注释:

> @Configuration – 表示该类包含一个或多个@Bean方法.与@ComponentScan一起播放.

> @EnableAutoConfiguration – 将尝试猜测并配置您可能需要的bean.根据您的应用程序,这可能会导致性能下降.

> @ComponentScan – 配置组件扫描.由于未定义包,因此将使用此注释从类的包中进行扫描.

如果没有更多的代码,就无法给出准确的猜测,但我认为大多数性能损失是由Spring Boot初始化引起的.

翻译自:https://stackoverflow.com/questions/30480046/unit-test-with-testng-in-spring-boot-takes-time-to-build-project


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

六度分隔

六度分隔

邓肯·J·瓦茨 / 陈禹 / 中国人民大学出版社 / 2011-3 / 46.00元

正如副标题所表明的,《六度分隔:一个相互连接的时代的科学》的基本内容是介绍一门正在形成中的新科学——关于网络的一般规律的科学。有这样一门科学吗?它的内容和方法是什么?近年来,这门学科有什么实质性的进展吗?在《六度分隔:一个相互连接的时代的科学》中,作者根据自己的亲身经历娓娓道来,用讲故事的方式,对于这些问题给出了令人信服的回答 除了简要的背景和总结以外,《六度分隔:一个相互连接的时代的科学》......一起来看看 《六度分隔》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

SHA 加密
SHA 加密

SHA 加密工具

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器