public void TestCubicMeterGroundWater2(CommunitySample com, CubicMeterGroundWaterCommunity expect) { var sut = new BaseFunction(); var result = sut.CubicMeterGroundWater(com); result.Should().BeEquivalentTo(expect); }
public void TestCubicMeterGroundWater(Survey survey, CubicMeterGroundWater expect) { var sut = new BaseFunction(); var result = sut.CubicMeterGroundWater(survey.Unit, survey.Building); result.Should().BeEquivalentTo(expect); }