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
}
com.fermod.contract.Testable.createValue
T createValue()
Creates and returns a value used for testing.
com.fermod.contract.Testable
The Testable class represents a testable type used by other classes for the use of their own tests.
Definition:
Testable.java:9
test
java
com
fermod
contract
Testable.java