From 8f84c00978dc05007873a9fe1de6a18511dc3cf8 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Tue, 28 Jun 2016 21:09:43 +0300 Subject: Restructure project for use with maven --- test/core/CommandLineArgumentContainerTest.java | 26 ------------------------- 1 file changed, 26 deletions(-) delete mode 100644 test/core/CommandLineArgumentContainerTest.java (limited to 'test/core/CommandLineArgumentContainerTest.java') diff --git a/test/core/CommandLineArgumentContainerTest.java b/test/core/CommandLineArgumentContainerTest.java deleted file mode 100644 index f6a6ead..0000000 --- a/test/core/CommandLineArgumentContainerTest.java +++ /dev/null @@ -1,26 +0,0 @@ -package com.jantuomi.interpreter.test.core; - -import com.jantuomi.interpreter.main.core.CommandLineArgumentContainer; -import com.jantuomi.interpreter.main.utils.Utilities; -import org.junit.Test; - -import java.io.File; - -import static org.junit.Assert.assertTrue; - -/** - * Created by jan on 10.6.2016. - */ -public class CommandLineArgumentContainerTest { - @Test - public void getSourceFileContents() throws Exception { - CommandLineArgumentContainer c = CommandLineArgumentContainer.getInstance(); - - File basePath = new File(Utilities.getBasePath()); - c.setFile(new File(basePath, "src/com/jantuomi/interpreter/test/resources/test.file")); - String contents = c.getSourceFileContents(); - System.out.println(contents); - assertTrue(contents.contains("###")); - } - -} \ No newline at end of file -- cgit v1.3