unit-testing
-
JUnit - 指定测试对其他测试的依赖关系(不跳过任何一个)? 我们的工具包有超过 15000 测试,如果其他测试失败,许多测试都会失败。例如,如果方法X.foo()使用 Y.bar()中的功能,而YTest.testBar()失败,那么XTest.testFoo()也将失败。显然,XTest.testFoo
-
Mockito Matchers isA,any,eq和eq之间的区别是什么? 我对它们之间的区别以及在这种情况下选择哪一种感到困惑。有些区别可能是显而易见的,比如 和 ,但我把它们都包括在内只是为了确定。
-
-
How to test a component / bean in Spring Boot To test a component/bean in a Spring Boot application, provides much information and multiple ways : , , , and still many other ways. Why provide so many ways ? How decide the way to favor ? Should I consider as integration tests my test classes annotat
-
mocking a singleton class I recently read that making a class singleton makes it impossible to mock the objects of the class, which makes it difficult to test its clients. I could not immediately understand the underlying reason. Can someone please explain what makes it impossible
-
-
JUnit 测试的表单不正确,无法引发异常? 我对 JUnit 很陌生,我真的不知道异常和异常处理的最佳实践是什么。 例如,假设我正在为 IPAddress 类编写测试。它有一个构造函数 IPAddress(String addr),如果 addr 为 null,它将引发 InvalidIPAddressE
-
-
Android Unit Tests with Dagger 2 我有一个Android应用程序,它使用Dagger 2进行依赖注入。我还使用最新的 gradle 构建工具,这些工具允许用于单元测试的构建变体和用于仪器测试的构建变体。我正在我的应用程序中使用,我想模
-
标签