Esempio n. 1
0
        public void TestCubicMeterGroundWater2(CommunitySample com, CubicMeterGroundWaterCommunity expect)
        {
            var sut    = new BaseFunction();
            var result = sut.CubicMeterGroundWater(com);

            result.Should().BeEquivalentTo(expect);
        }
Esempio n. 2
0
        public void TestCubicMeterGroundWater(Survey survey, CubicMeterGroundWater expect)
        {
            var sut    = new BaseFunction();
            var result = sut.CubicMeterGroundWater(survey.Unit, survey.Building);

            result.Should().BeEquivalentTo(expect);
        }