Exemplo n.º 1
0
 public void ShouldThrowOnEmptyButtonTitle()
 {
     // Arrange
     // Act
     _ = new NavLinkAttribute("SomeMenu", string.Empty, 0);
 }
Exemplo n.º 2
0
 public void ShouldThrowOnEmptyMenuGroup()
 {
     // Arrange
     // Act
     _ = new NavLinkAttribute(string.Empty, "title", 0);
 }
Exemplo n.º 3
0
 public void ShouldThrowOnNullButtonTitle()
 {
     // Arrange
     // Act
     _ = new NavLinkAttribute("SomeMenu", null, 0);
 }
Exemplo n.º 4
0
 public void ShouldThrowOnNullMenuGroup()
 {
     // Arrange
     // Act
     _ = new NavLinkAttribute(null, "title", 0);
 }