Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 1.04 KB

README.md

File metadata and controls

26 lines (23 loc) · 1.04 KB

Plume Test

Provide common Plume dependencies for tests and integration tests as well as the MockedClock class to ease mocking the Clock object.

Included dependencies:

  • Basic JUnit framework: JUnit 5
  • Test assertions done in a fluent and more readable way: Assertj
  • To create quick mocks: Mockito
  • Integration tests with Guice: Guice-junit

Sample usage of MockedClock with Guice to create a test module that overrides the default Clock:

public class TestModule extends AbstractModule {
	@Override
	protected void configure() {
		install(Modules.override(new ApplicationModule()).with(new AbstractModule() {
			@Override
			protected void configure() {
				bind(Clock.class).to(MockedClock.class);
			}
		}));
	}
}

This module can then be used with the @GuiceTest annotation. See Guice JUnit documentation for details.