extended floor attributes and added new test

This commit is contained in:
Khalim Conn-Kowlessar 2023-07-20 18:53:50 +01:00
parent a5ef3b8483
commit 99ea438490
3 changed files with 7 additions and 3 deletions

View file

@ -3,6 +3,10 @@ clean_floor_cases = [
'thermal_transmittance_unit': None, 'is_assumed': False, 'is_to_unheated_space': False,
'is_to_external_air': False, 'is_suspended': False, 'is_solid': False, 'insulation_thickness': None,
"another_property_below": True},
{'original_description': '(anheddiad arall islaw)', 'thermal_transmittance': None,
'thermal_transmittance_unit': None, 'is_assumed': False, 'is_to_unheated_space': False,
'is_to_external_air': False, 'is_suspended': False, 'is_solid': False, 'insulation_thickness': None,
"another_property_below": True},
{'original_description': '(other premises below)', 'thermal_transmittance': None,
'thermal_transmittance_unit': None,
'is_assumed': False, 'is_to_unheated_space': False, 'is_to_external_air': False, 'is_suspended': False,

View file

@ -2,7 +2,7 @@ import pickle
import pytest
import os
from unittest.mock import Mock
from model_data.recommendations.FloorRecommendations import FloorRecommendations
from recommendations.FloorRecommendations import FloorRecommendations
class TestWallRecommendations:

View file

@ -5,10 +5,10 @@ import pytest
import pickle
import numpy as np
from unittest.mock import Mock, MagicMock
from model_data.recommendations.WallRecommendations import WallRecommendations
from recommendations.WallRecommendations import WallRecommendations
from model_data.analysis.UvalueEstimations import UvalueEstimations
from model_data.Property import Property
from model_data.recommendations.recommendation_utils import is_diminishing_returns
from recommendations.recommendation_utils import is_diminishing_returns
class TestWallRecommendations: