From b5b6e4d35894fb4791d9de5feea5f0b00feaefb3 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 23 Apr 2026 14:36:09 +0000 Subject: [PATCH] =?UTF-8?q?New=20properties=20fully=20mapped=20?= =?UTF-8?q?=F0=9F=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../epc/domain/tests/test_from_site_notes.py | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/datatypes/epc/domain/tests/test_from_site_notes.py b/datatypes/epc/domain/tests/test_from_site_notes.py index 637abad5..ed4bf1ae 100644 --- a/datatypes/epc/domain/tests/test_from_site_notes.py +++ b/datatypes/epc/domain/tests/test_from_site_notes.py @@ -13,6 +13,7 @@ from datatypes.epc.domain.epc_property_data import ( SapEnergySource, SapFloorDimension, SapHeating, + SapVentilation, SapWindow, ShowerOutlet, ShowerOutlets, @@ -381,6 +382,9 @@ class TestFromSiteNotesExample1: emitter_temperature="Unknown", fan_flue_present=True, main_heating_control="Programmer, room thermostat and TRVs", + condensing=True, + weather_compensator=False, + central_heating_pump_age_str="Unknown", ) ], has_fixed_air_conditioning=False, @@ -485,6 +489,10 @@ class TestFromSiteNotesExample1: wall_thickness_mm=280, roof_insulation_location="Joists", roof_insulation_thickness=100, + floor_type="Ground Floor", + floor_construction_type="Suspended, not timber", + floor_insulation_type_str="As Built", + floor_u_value_known=False, ) ], solar_water_heating=False, @@ -508,6 +516,23 @@ class TestFromSiteNotesExample1: blocked_chimneys_count=0, draughtproofed_door_count=2, report_reference="49D422A9-0779-44DD-9665-464D35DFF1A8", + number_of_storeys=2, + any_unheated_rooms=True, + waste_water_heat_recovery="None", + hydro=False, + photovoltaic_array=False, + sap_ventilation=SapVentilation( + ventilation_type="Natural", + open_flues_count=0, + closed_flues_count=0, + boiler_flues_count=0, + other_flues_count=0, + extract_fans_count=2, + passive_vents_count=0, + flueless_gas_fires_count=0, + pressure_test="No test", + draught_lobby=False, + ), ) assert result == expected