Created TestMatrix class
For now only has one test for the importCSV method
This commit is contained in:
parent
8b3a283118
commit
18db15a050
12
src/TestMatrix.java
Normal file
12
src/TestMatrix.java
Normal file
@ -0,0 +1,12 @@
|
||||
public class TestMatrix {
|
||||
public static void main(String[] args) {
|
||||
testImportCSV();
|
||||
}
|
||||
|
||||
public static void testImportCSV() {
|
||||
Matrix m = new Matrix();
|
||||
|
||||
m.importCSV("/home/satan/bin/graphprogram/graph.csv");
|
||||
System.out.println(m);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user