Example #1
0
        public static void TestUnsignedInteger32PropertyInfoGetMutatorMinNullOptional()
        {
            const Dhgms.Nucleotide.Model.CollectionType CollectionType = Dhgms.Nucleotide.Model.CollectionType.GenericLinkedList;
            const string Name = "Name";
            const string Description = "Description";
            const bool Optional = false;

            Dhgms.Nucleotide.PropertyInfo.UnsignedInteger32PropertyInfo instance = new Dhgms.Nucleotide.PropertyInfo.UnsignedInteger32PropertyInfo(
                CollectionType,
                Name,
                Description,
                Optional,
                null,
                255,
                true,
                null);

            Console.Write(instance.GetMutator());
        }
Example #2
0
        public static void TestUnsignedInteger32PropertyInfoConstructorBasicArguments()
        {
            const Dhgms.Nucleotide.Model.CollectionType CollectionType = Dhgms.Nucleotide.Model.CollectionType.GenericLinkedList;
            const string Name = "Name";
            const string Description = "Description";
            const bool Optional = false;

            Dhgms.Nucleotide.PropertyInfo.UnsignedInteger32PropertyInfo instance = new Dhgms.Nucleotide.PropertyInfo.UnsignedInteger32PropertyInfo(
                CollectionType,
                Name,
                Description,
                Optional,
                null,
                null,
                true,
                null);

            Assert.Equal(CollectionType, instance.Collection);
            Assert.Equal(Name, instance.Name);
            Assert.Equal(Description, instance.Description);
            Assert.Equal(Optional, instance.Optional);
        }