Exemplo n.º 1
0
        public void ByTag_WithNameSurroundedBySpaces_ReturnsTrimmedName()
        {
            string       output   = RevSpec.ByTag(" stable ").ToString();
            const string expected = "stable";

            Assert.That(output, Is.EqualTo(expected));
        }
Exemplo n.º 2
0
 public void ByTag_WithWhitespaceName_ThrowsArgumentNullException()
 {
     Assert.Throws <ArgumentNullException>(() => RevSpec.ByTag(" \t \n \r "));
 }
Exemplo n.º 3
0
 public void ByTag_WithNullName_ThrowsArgumentNullException()
 {
     Assert.Throws <ArgumentNullException>(() => RevSpec.ByTag(null));
 }
Exemplo n.º 4
0
 public void ByTag_WithEmptyName_ThrowsArgumentNullException()
 {
     Assert.Throws <ArgumentNullException>(() => RevSpec.ByTag(string.Empty));
 }