Exemplo n.º 1
0
        public async Task GivenPuch_WhenGetById_ThenReturnsOK()
        {
            var materialId = await GivenPuch();

            var result = await _sut.GetMaterialById(materialId);

            result.Value.SapNr.Should().Be(PuchSapNr);
            result.Value.Description.Should().Be(PuchDescription);
        }