예제 #1
0
        public void UValueSingleLayerTest(double conductivity, double thickness, double expectedUValue)
        {
            Wall     wall         = new Wall(10);
            Material wallMaterial = new Material("wallMaterial", conductivity);

            wall.AddLayer(wallMaterial, thickness);

            Assert.Equal(expectedUValue, wall.CalculateUValue());
        }