fixed package mismatch
This commit is contained in:
18
Java/ProjectModels/CognitiveModel/ModelFiles/Tests.java
Normal file
18
Java/ProjectModels/CognitiveModel/ModelFiles/Tests.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package ModelFiles;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
public class Tests {
|
||||
|
||||
MindQueue m = new MindQueue();
|
||||
|
||||
@Test
|
||||
public void test1() {
|
||||
Integer i = 1;
|
||||
Action a = new Vision();
|
||||
m.push(a);
|
||||
assertEquals(i, m.pop());
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user