/**
 * A toy interface to demonstrate that an abstract class can implement
 * an interface and not implement all of the interface's methods.
 */
public interface TestInterface {
    void aMethod();
}