Created TestMatrix class

For now only has one test for the importCSV method
This commit is contained in:
AustrianToast 2023-03-05 00:47:41 +01:00
parent 8b3a283118
commit 18db15a050

12
src/TestMatrix.java Normal file
View 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);
}
}