コード例 #1
0
        public void GPhotoQuotaCurrentConstructorTest()
        {
            string initValue = "TestValue"; 
            GPhotoQuotaCurrent target = new GPhotoQuotaCurrent(initValue);
            Assert.AreEqual(initValue, target.Value);

        }
コード例 #2
0
 public void GPhotoQuotaCurrentConstructorTest1()
 {
     GPhotoQuotaCurrent target = new GPhotoQuotaCurrent();
     Assert.IsNotNull(target);
     Assert.IsTrue(String.IsNullOrEmpty(target.Value));
 }