コード例 #1
0
ファイル: GPhotoBytesUsedTest.cs プロジェクト: Zelxin/RPiKeg
 public void GPhotoBytesUsedConstructorTest()
 {
     string initValue = "TestValue"; 
     GPhotoBytesUsed target = new GPhotoBytesUsed(initValue);
     Assert.AreEqual(initValue, target.Value);
 }
コード例 #2
0
ファイル: GPhotoBytesUsedTest.cs プロジェクト: Zelxin/RPiKeg
 public void GPhotoBytesUsedConstructorTest1()
 {
     GPhotoBytesUsed target = new GPhotoBytesUsed();
     Assert.IsNotNull(target);
     Assert.IsTrue(String.IsNullOrEmpty(target.Value));
 }