Пример #1
0
        public async Task Selects_All_Cards()
        {
            // Arrange
            const int expected = 77585513;

            using (var context = new DueltankDbContext(_dbContextOptions))
            {
                context.Card.Add(new Card
                {
                    Name        = "Jinzo",
                    CardNumber  = 77585513,
                    Description = "Trap Cards, and their effects on the field, cannot be activated. Negate all Trap effects on the field.",
                    Created     = DateTime.UtcNow,
                    Updated     = DateTime.UtcNow
                });

                context.SaveChanges();
            }

            // Act
            var result = await _sut.GetCardByNumber(77585513);

            // Assert
            result.CardNumber.Should().Be(expected);
        }