Ejemplo n.º 1
0
 public void op_EqualityTest()
 {
     Vector a = new Vector(); // TODO: Initialize to an appropriate value
     Vector b = new Vector(); // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     actual = (a == b);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Ejemplo n.º 2
0
 public void op_MultiplyTest()
 {
     Vector v = new Vector(); // TODO: Initialize to an appropriate value
     int scalar = 0; // TODO: Initialize to an appropriate value
     Vector expected = new Vector(); // TODO: Initialize to an appropriate value
     Vector actual;
     actual = (v * scalar);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }