legacy commit 4 (backlog)
This commit is contained in:
17
Java/Project_Models/Cognitive_Model/Tests.java
Normal file
17
Java/Project_Models/Cognitive_Model/Tests.java
Normal file
@@ -0,0 +1,17 @@
|
||||
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