Example #1
0
        public void GPhotoMaxPhotosPerAlbumConstructorTest()
        {
            string initValue = "TestValue";
            GPhotoMaxPhotosPerAlbum target = new GPhotoMaxPhotosPerAlbum(initValue);

            Assert.AreEqual(initValue, target.Value);
        }
Example #2
0
        public void GPhotoMaxPhotosPerAlbumConstructorTest1()
        {
            GPhotoMaxPhotosPerAlbum target = new GPhotoMaxPhotosPerAlbum();

            Assert.IsNotNull(target);
            Assert.IsTrue(String.IsNullOrEmpty(target.Value));
        }