示例#1
0
 public void MoviesTest()
 {
     Tag target = new Tag(); // TODO: Initialize to an appropriate value
     ICollection<Movie> expected = null; // TODO: Initialize to an appropriate value
     ICollection<Movie> actual;
     target.Movies = expected;
     actual = target.Movies;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
示例#2
0
 public void IdTest()
 {
     Tag target = new Tag(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     target.Id = expected;
     actual = target.Id;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
示例#3
0
 public void TagNameTest()
 {
     Tag target = new Tag(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.TagName = expected;
     actual = target.TagName;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
示例#4
0
 public void TagConstructorTest()
 {
     Tag target = new Tag();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }