aboutsummaryrefslogtreecommitdiffstats
path: root/test/MainTest.java
blob: 256998d9e1c2ddf8865f7b4c6dbd908214650e61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.jantuomi.interpreter.test;

import com.jantuomi.interpreter.main.Main;
import org.junit.Test;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

/**
 * Created by jan on 10.6.2016.
 */
public class MainTest {
    @Test
    public void testParseArguments1() {
        String[] notAnArgument = {"--not-an-argument"};
        assertFalse(Main.parseArguments(notAnArgument));
    }

    @Test
    public void testParseArguments2() {
        String[] fileTestArgument = {"-f", "test.file"};
        assertTrue(Main.parseArguments(fileTestArgument));
    }

    @Test
    public void testWholeProcedure() {
        String input = "x <- 1 + 2";
        Main.run(input);
    }
}