Exemple #1
0
        public void GPhotoWeightConstructorTest()
        {
            string initValue = "TestValue"; 
            GPhotoWeight target = new GPhotoWeight(initValue);
            Assert.AreEqual(initValue, target.Value);

        }
Exemple #2
0
 public void GPhotoWeightConstructorTest1()
 {
     GPhotoWeight target = new GPhotoWeight();
     Assert.IsNotNull(target);
     Assert.IsTrue(String.IsNullOrEmpty(target.Value));
 }