/*! * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, * IN PART OR IN WHOLE, * WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file tst_models.h * \date 04/16/2020 * \author Behrouz NematiPour * */ #pragma once // Qt #include #include // Project class tst_models : public QObject { Q_OBJECT public: explicit tst_models(QObject *parent = nullptr); private slots: void tst_MTreatmentRanges_data (); void tst_MTreatmentRanges (); // - DG Data // -- DG Drain Pump void tst_MDGDrainPump_data (); void tst_MDGDrainPump (); // -- DG Heaters void tst_MDGHeaters_data (); void tst_MDGHeaters (); // DG Load Cell Readings void tst_MDGLoadCellReadings_data (); void tst_MDGLoadCellReadings (); void tst_MDGTemperatures_data (); void tst_MDGTemperatures (); // - Treatment Adjustments // -- Treatment Duration void tst_MAdjustDurationResponse_data (); void tst_MAdjustDurationResponse (); // -- Treatment Blood/Dialysate Flow void tst_MAdjustBloodDialysateResponse_data (); void tst_MAdjustBloodDialysateResponse (); // -- Ultrafiltration // --- State void tst_MAdjustUltrafiltrationStateResponse_data (); void tst_MAdjustUltrafiltrationStateResponse (); // --- Edit void tst_MAdjustUltrafiltrationEditResponse_data (); void tst_MAdjustUltrafiltrationEditResponse (); // --- Confirm void tst_MAdjustUltrafiltrationConfirmResponse_data (); void tst_MAdjustUltrafiltrationConfirmResponse (); };