Ejemplo n.º 1
0
 public void DNWithBinary_EmptyInput()
 {
     DNWithBinary.Parse(String.Empty);
 }
Ejemplo n.º 2
0
        public void DNWithBinary_MalformedInput()
        {
            string input = "B:828::CN = Admin,CN=Users,DC=contoso,DC=com";

            DNWithBinary.Parse(input);
        }
Ejemplo n.º 3
0
 public void DNWithBinary_NullInput()
 {
     DNWithBinary.Parse(null);
 }