Event Dispatcher  v0.1.6-beta.1
Project that offers a small library that allows to subscribe and fire events.
Testable.java
Go to the documentation of this file.
1 package com.fermod.contract;
2 
9 public interface Testable<T> {
10 
18  T createValue();
19 
20 }
T createValue()
Creates and returns a value used for testing.
The Testable class represents a testable type used by other classes for the use of their own tests.
Definition: Testable.java:9