Mock.Polars:

Was accidentally using testng in the PolarsTest. Changed it to junit.

#story[873]
main
fjc40 9 years ago
parent be9f19eae5
commit 0c790c1721

@ -1,8 +1,7 @@
package seng302.Model; package seng302.Model;
import org.junit.Before; import org.junit.Before;
import org.testng.annotations.BeforeMethod; import org.junit.Test;
import org.testng.annotations.Test;
import seng302.DataInput.PolarParser; import seng302.DataInput.PolarParser;
import seng302.Exceptions.InvalidPolarFileException; import seng302.Exceptions.InvalidPolarFileException;
@ -17,7 +16,7 @@ public class PolarsTest {
private double angleEpsilon = 2; private double angleEpsilon = 2;
private double speedEpsilon = 0.5; private double speedEpsilon = 0.5;
@BeforeMethod @Before
/** /**
* Creates the Polars object for the tests. * Creates the Polars object for the tests.
*/ */

Loading…
Cancel
Save