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