Skip to content

Commit

Permalink
Feat: Added FileParserTest
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyah committed Mar 11, 2026
1 parent 1e840d4 commit 113ed67
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/test/java/edu/ntnu/idi/idatt2003/g40/mappe/FileParserTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package edu.ntnu.idi.idatt2003.g40.mappe;

import org.junit.jupiter.api.Test;

import java.io.File;

import static org.junit.jupiter.api.Assertions.*;

class FileParserTest {

private final String filePath = "src/main/resources/dummydata.txt";
FileParser fileParser;

@Test
void test1() {
fileParser = new FileParser(filePath);
}
}

0 comments on commit 113ed67

Please sign in to comment.