public static void TestUnsignedInteger8ConstructorBasicArguments() { const Dhgms.Nucleotide.Model.Info.CollectionType CollectionType = Dhgms.Nucleotide.Model.Info.CollectionType.GenericLinkedList; const string Name = "Name"; const string Description = "Description"; const bool Optional = false; UnsignedInteger8 instance = new UnsignedInteger8( 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); }
public static void TestUnsignedInteger8GetMutatorMinNullOptional() { const Dhgms.Nucleotide.Model.Info.CollectionType CollectionType = Dhgms.Nucleotide.Model.Info.CollectionType.GenericLinkedList; const string Name = "Name"; const string Description = "Description"; const bool Optional = false; UnsignedInteger8 instance = new UnsignedInteger8( CollectionType, Name, Description, Optional, null, 255, true, null); Console.Write(instance.GetMutator()); }
public void Visit(UnsignedInteger8 value) { value.TypedValue = mBitsReader.ReadUInt8(value.BitsCount); }