Commit 99190899 authored by Matthew Dawson's avatar Matthew Dawson
Browse files

Add missing RunWith annotation in TableTest.

TableTest didn't have the RunWith annotation.  Fix.
parent 698d3001
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -37,10 +37,13 @@ import ca.mcscert.jtet.tabularexpression.Table;
import ca.mcscert.jtet.tabularexpression.TwoDimensionalGrid;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

import java.util.HashMap;
import java.util.Map;

@RunWith(JUnit4.class)
public class TableTest {

    @Test(expected = IllegalTableSetup.class)