-
W. Spencer Smith authoredW. Spencer Smith authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
TestVectorTSet.java 501 B
/**
* Author: S. Smith
* Revised: March 4, 2017
*
* Description: Testing VectorTSet Class
*/
import org.junit.*;
import static org.junit.Assert.*;
public class TestVectorTSet
{
private VectorTSet p;
@Before
public void setUp()
{
p = new VectorTSet();
}
@After
public void tearDown()
{
p = null;
}
@Test
public void testAdd()
{
p.add(new VectorT(4, 5));
assertEquals(1, p.size());
//assertTrue(p.mem(new VectorT(4, 5)));
}
}