Merge pull request #548 from muditporwal/master

Checkstyle improvements #539 : Added JavaDocType Rule
This commit is contained in:
Ilkka Seppälä
2017-04-01 14:45:52 +03:00
committed by GitHub
103 changed files with 575 additions and 282 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> {