You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
440 B
27 lines
440 B
package seng302.DataInput;
|
|
|
|
import org.testng.annotations.Test;
|
|
|
|
import java.io.File;
|
|
|
|
import static org.testng.Assert.*;
|
|
|
|
/**
|
|
* Created by f123 on 10-May-17.
|
|
*/
|
|
public class PolarParserTest {
|
|
|
|
@Test
|
|
/**
|
|
* Tests if we can parse a polar data file (stored in a string), and create a polar table.
|
|
*/
|
|
public void testParse() throws Exception {
|
|
|
|
|
|
//Polars = PolarParser.parse("polars/acc_polars.csv");
|
|
|
|
|
|
}
|
|
|
|
}
|