Exemplo n.º 1
0
        public void ShouldValidateLegendaryIsBoring()
        {
            // arrange
            Legendary item = new Legendary(10);

            // act
            item.AdjustQuality();

            //assert
            item.CurrentQuality().Should().Be(10);
        }