Exemplo n.º 1
0
        public void Given_An_Invalid_YugiohCardType_Should_Return_False(YugiohCardType yugiohCardType)
        {
            // Arrange
            // Act
            var result = _sut.Handles(yugiohCardType);

            // Assert
            result.Should().BeFalse();
        }
Exemplo n.º 2
0
 public bool Handles(YugiohCardType yugiohCardType)
 {
     return(yugiohCardType == YugiohCardType.Trap);
 }
 public bool Handles(YugiohCardType yugiohCardType)
 {
     return(yugiohCardType == YugiohCardType.Monster);
 }
Exemplo n.º 4
0
 public bool Handles(YugiohCardType yugiohCardType)
 {
     return(yugiohCardType == YugiohCardType.Spell);
 }