// sin
@Test public void testSin1x0() {this.runTest("4000", new Sine(1, 0, XCoord()));}
@Test public void testSin0x0() {this.runTest("4001", new Sine(0, 0, XCoord()));}
@Test public void testSinN1x0() {this.runTest("4002", new Sine(-1, 0, XCoord()));}
@Test public void testSinPIx0() {this.runTest("4003", new Sine(3.14, 0, XCoord()));}
@Test public void testSinPIxPI2() {this.runTest("4004", new Sine(3.14, 1.57, XCoord()));}