示例#1
0
        public void ISO_639_2ConstructorTest3()
        {
            string    alpha_3 = string.Empty; // TODO: Initialize to an appropriate value
            string    english = string.Empty; // TODO: Initialize to an appropriate value
            ISO_639_2 target  = new ISO_639_2(alpha_3, english);

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
示例#2
0
        public void ToStringTest()
        {
            ISO_639_2 target   = new ISO_639_2(); // TODO: Initialize to an appropriate value
            string    expected = string.Empty;    // TODO: Initialize to an appropriate value
            string    actual;

            actual = target.ToString();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
示例#3
0
        public void ISO_639_2ConstructorTest2()
        {
            ISO_639_2 target = new ISO_639_2();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
示例#4
0
 public override int GetHashCode()
 {
     return(ISO_639_2 != null ? ISO_639_2.GetHashCode() : 0);
 }