From 18db15a050a606a554c77d753268acfeb310a55a Mon Sep 17 00:00:00 2001 From: AustrianToast Date: Sun, 5 Mar 2023 00:47:41 +0100 Subject: [PATCH] Created TestMatrix class For now only has one test for the importCSV method --- src/TestMatrix.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/TestMatrix.java diff --git a/src/TestMatrix.java b/src/TestMatrix.java new file mode 100644 index 0000000..1eb95c5 --- /dev/null +++ b/src/TestMatrix.java @@ -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); + } +}