mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 14:28:43 +00:00
36 lines
848 B
Java
36 lines
848 B
Java
//package seng302.models.parsers;
|
|
//
|
|
//import org.junit.Before;
|
|
//import org.junit.Test;
|
|
//import seng302.models.Boat;
|
|
//import seng302.models.Yacht;
|
|
//
|
|
//import java.util.ArrayList;
|
|
//
|
|
//import static org.junit.Assert.*;
|
|
//
|
|
///**
|
|
// * Created by Haoming on 18/03/17.
|
|
// */
|
|
//public class TeamsParserTest {
|
|
//
|
|
// private TeamsParser tp;
|
|
// @Before
|
|
// public void readFile() {
|
|
// tp = new TeamsParser("/config/teams.xml");
|
|
// }
|
|
//
|
|
// @Test
|
|
// public void getBoats() throws Exception {
|
|
// ArrayList<Yacht> boats = tp.getBoats();
|
|
//
|
|
// assertEquals(6, boats.size(), 1e-10);
|
|
//
|
|
// assertEquals("Oracle Team USA", boats.get(0).getBoatName());
|
|
// //assertEquals(30.9, boats.get(0).getVelocity(), 1e-10);
|
|
//
|
|
// assertEquals("Groupama Team France", boats.get(5).getBoatName());
|
|
// //assertEquals(45.6, boats.get(5).getVelocity(), 1e-10);
|
|
// }
|
|
//
|
|
//} |