Beispiel #1
0
        internal static TypeNamePart CreateTypeNamePart01()
        {
            string       part         = string.Empty;
            TypeNamePart typeNamePart = new TypeNamePart(part);

            return(typeNamePart);
        }
Beispiel #2
0
        public void TestCreateTypeNamePart01()
        {
            TypeNamePart typeNamePart = CreateTypeNamePart01();

            Assert.IsNotNull(typeNamePart);
        }
Beispiel #3
0
 public void TestTypeNamePartConstructor01()
 {
     string       part         = string.Empty;
     TypeNamePart typeNamePart = new TypeNamePart(part);
 }