コード例 #1
0
ファイル: StatisticsTest.cs プロジェクト: Zelxin/RPiKeg
 public void StatisticsConstructorTest()
 {
     string initValue = "secret test string";
     Statistics target = new Statistics(initValue);
     Assert.AreEqual(target.Value, initValue, "Object value should be identical after construction");
 }
コード例 #2
0
 public void StatisticsTest()
 {
     ProfileEntry target = new ProfileEntry(); // TODO: Initialize to an appropriate value
     Statistics expected =new Statistics();
     Statistics actual;
     target.Statistics = expected;
     actual = target.Statistics;
     Assert.AreEqual(expected, actual);
 }
コード例 #3
0
ファイル: StatisticsTest.cs プロジェクト: Zelxin/RPiKeg
 public void StatisticsConstructorTest1()
 {
     Statistics target = new Statistics();
     Assert.IsNull(target.Value,  "Object value should be null after construction");
 }