コード例 #1
0
ファイル: VectorTest.cs プロジェクト: jadaml/Enhancer.NET
 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.");
 }
コード例 #2
0
ファイル: VectorTest.cs プロジェクト: jadaml/Enhancer.NET
 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.");
 }