Acai 是 JUnit4 和 Guice 的测试库,可以更容易的编写应用功能测试。
主要特性:
注入测试需要的助手类
启动测试需要的任意的服务
运行测试之间的服务清理
按照正确顺序启动多个服务
创建测试作用域绑定
Acai 主要针对的是应用大型功能测试。
<dependency> <groupId>com.google.acai</groupId> <artifactId>acai</artifactId> <version>0.1</version> <scope>test</scope> </dependency>
@RunWith(JUnit4.class) public class SimpleTest { @Rule public Acai acai = new Acai(MyTestModule.class); @Inject private MyClass foo; @Test public void checkSomethingWorks() { // Use the injected value of foo here } private static class MyTestModule extends AbstractModule { @Override protected void configure() { bind(MyClass.class).to(MyClassImpl.class); } } }
@RunWith(JUnit4.class) public class ExampleFunctionalTest { @Rule public Acai acai = new Acai(MyTestModule.class); @Inject private MyServerClient serverClient; @Test public void checkSomethingWorks() { // Call the running server and test some behaviour here. // Any state will be cleared by MyFakeDatabaseWiper after each // test case. } private static class MyTestModule extends AbstractModule { @Override protected void configure() { // Normal Guice modules which configure your // server with in-memory versions of backends. install(MyServerModule()); install(MyFakeDatabaseModule()); install(new TestingServiceModule() { @Override protected void configureTestingServices() { bindTestingService(MyServerRunner.class); bindTestingService(MyFakeDatabaseWiper.class); } }); } } private static class MyServerRunner implements TestingService { @Inject private MyServer myServer; @BeforeSuite void startServer() { myServer.start().awaitStarted(); } } private static class MyFakeDatabaseWiper implements TestingService { @Inject private MyFakeDatabse myFakeDatabase; @AfterTest void wipeDatabase() { myFakeDatabase.wipe(); } } }
Gabriel is a student from UFPE that loves acai (he really loves it). As he is really passionate about it, he became very picky about how much acai a perfect bowl should have. A bowl is said to be perf
Description Gabriel is a student from UFPE that loves acai (he really loves it). As he is really passionate about it, he became very picky about how much acai a perfect bowl should have. A bowl is sai
问题内容: 我让Google Guice负责连接对象。但是,如何测试绑定是否运作良好? 例如,假设我们有一个具有依赖性的类。如何测试B是否正确注入? 注意,这里没有方法,我想断言不是。 问题答案: 对于任何复杂的Guice项目,您都应该添加测试以确保可以使用这些模块来创建您的类。在您的示例中,如果B是Guice无法弄清楚如何创建的类型,则Guice将无法创建A。如果不需要A来启动服务器,但是当服务
我有一个maven项目和一个maven项目,它依赖于项目。每个项目都有一个Guice模块,将一些类绑定到接口。 在javaruntime中,是一个接口IElementFactory和一个类,该类通过构造函数注入获得IElementFactory: IElementFactory的具体实现在androidruntime项目中,称为AndroidElementFactory。其他接口的所有实现都在ja
我是配置硒的新手。寻找路过的司机找到此解决方案https://stackoverflow.com/a/35101914/7104440我想知道是否有可能以这种方式从浏览器中注入许多驱动程序。是否可以绑定不同的驱动程序?我收到错误代码: 1)不允许绑定到null实例。如果这是您的预期行为,请使用Providers.of(null))。在assecobs.driver.DriverModule.con
在我的<code>模块中。scala我绑定了一个特性的具体实现,定义如下: 并且使用< code>TypeLiteral完成绑定: 现在,我需要在使用 Mockito 模拟进行测试时覆盖此绑定: 但我得到以下错误: 我该如何解决这个问题? 这个问题涉及到如何使用Scala Guice绑定一个用一元类型参数扩展Trait的类?
我正在开发一个Play(2.4版)应用程序,Guice是DI提供商。一切运行正常,但是我有一组使用ScalaTestPlus运行的功能测试,我想在测试运行时替换一些依赖项。这些测试是通过扩展类来编写的,因为它们检查我的REST API。 在测试过程中是否有其他依赖关系? 编辑:示例代码: 样品控制器: 和模块中的依赖定义: 我的测试是这样的: 我希望用其他实现取代,但只在测试中使用。
我在使用google Guice获取google cloudendpoint时遇到了麻烦。从endpoints库中可用的类看来,这应该是可能的,但我不清楚如何连接它,也没有看到任何文档。
我是一个尝试使用Guice的人(这里是新手!!)我的一个项目。 所以我有一个 我的实现是 我还将DataQueue接口定义为 DataQueue的实现如下 在我的AppModule.Configure方法中,我有以下代码 我的ConsumerFactory是一个带有create()方法的接口,该方法返回一个使用者 我的DataQueueFactory是一个带有create()方法的接口,该方法返回
单元测试 单元测试仅依赖于源代码,是测试代码逻辑是否符合预期的最简单方法。 运行所有的单元测试 make test 仅测试指定的package # 单个package make test WHAT=./pkg/api # 多个packages make test WHAT=./pkg/{api,kubelet} 或者,也可以直接用go test go test -v k8s.io/kubernet