Ejemplo n.º 1
0
        public async Task CheckingExistenceOfMultiples_WillReturnFalse_WhenAnyNotExist(int id1, int id2, int id3)
        {
            await _db.Database.EnsureCreatedAsync();

            // Arrange
            sut = new TrilligRepository(_db);

            // Act
            bool result = await sut.Exists(id1, id2, id3);

            // Assert
            Assert.False(result);
            await _db.Database.EnsureDeletedAsync();
        }
Ejemplo n.º 2
0
        public async Task CheckingExistence_WillReturnTrue_WhenExists(int id)
        {
            await _db.Database.EnsureCreatedAsync();

            // Arrange
            sut = new TrilligRepository(_db);

            // Act
            bool result = await sut.Exists(id);

            // Assert
            Assert.True(result);
            await _db.Database.EnsureDeletedAsync();
        }