Files
java-design-patterns/template-method/src/test/java/com/iluwatar/templatemethod/HitAndRunMethodTest.java
T
2015-12-30 20:55:22 +01:00

23 lines
531 B
Java

package com.iluwatar.templatemethod;
/**
* Date: 12/30/15 - 18:12 PM
*
* @author Jeroen Meulemeester
*/
public class HitAndRunMethodTest extends StealingMethodTest<HitAndRunMethod> {
/**
* Create a new test for the {@link HitAndRunMethod}
*/
public HitAndRunMethodTest() {
super(
new HitAndRunMethod(),
"old goblin woman",
"The target has been chosen as old goblin woman.",
"Approach the old goblin woman from behind.",
"Grab the handbag and run away fast!"
);
}
}