Beispiel #1
0
        public void ByteLength_ShouldBeCorrect(int length, int expected)
        {
            var b = new ASN1BitString(new BitArray(length));

            Assert.Equal(expected, b.ByteLength);
        }
Beispiel #2
0
 public ASN1BitStringMetadata(ASN1BitString annotation)
     : this(annotation.Name)
 {
 }