Removed AvoidStarImport Rule

Added JavaDocType Rule
This commit is contained in:
Mudit Porwal
2017-03-22 01:16:01 +08:00
parent 175e9f58c1
commit 09585c3874
105 changed files with 577 additions and 284 deletions

View File

@ -22,18 +22,19 @@
*/
package com.iluwatar.interpreter;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import java.util.ArrayList;
import java.util.List;
import java.util.function.BiFunction;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import org.junit.Test;
/**
* Date: 12/14/15 - 11:48 AM
*
* Test Case for Expressions
* @param <E> Type of Expression
* @author Jeroen Meulemeester
*/
public abstract class ExpressionTest<E extends Expression> {