public class TestWireframeLine extends SetupTestEnvironment.TestCase {
@Test
public void testConstructors() {
new WireframeLine(1.0,2.0,3.0, 4.0,5.0,6.0);
new WireframeLine(new Vector3(1.0,2.0,3.0), new Vector3(4.0,5.0,6.0));
// it is valid to have both points be the same values
new WireframeLine(0,0,0, 0,0,0);
// or even the same instance
Vector3 v = new Vector3(8.67, -5.3, 0.9);
WireframeLine shape = new WireframeLine(v, v);
assertSame(shape.getPointA(), shape.getPointB());
}