Test done

This commit is contained in:
SrdjanPaunovic
2017-05-03 13:21:13 +02:00
parent 645e91ed23
commit 678524704c
14 changed files with 192 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
package concreteextensions;
import org.junit.Test;
import units.SergeantUnit;
import static org.junit.Assert.*;
/**
* Created by Srdjan on 03-May-17.
*/
public class SergeantTest {
@Test
public void sergeantReady() throws Exception {
final Sergeant sergeant = new Sergeant(new SergeantUnit("SergeantUnitTest"));
sergeant.sergeantReady();
}
}