コード例 #1
0
ファイル: GPhotoRotationTest.cs プロジェクト: Zelxin/RPiKeg
        public void GPhotoRotationConstructorTest()
        {
            string initValue = "TestValue"; 
            GPhotoRotation target = new GPhotoRotation(initValue);
            Assert.AreEqual(initValue, target.Value);

        }
コード例 #2
0
ファイル: GPhotoRotationTest.cs プロジェクト: Zelxin/RPiKeg
 public void GPhotoRotationConstructorTest1()
 {
     GPhotoRotation target = new GPhotoRotation();
     Assert.IsNotNull(target);
     Assert.IsTrue(String.IsNullOrEmpty(target.Value));
 }