2021-10-14 15:51:38 -04:00
|
|
|
#ifndef DRIVERTESTS_HPP
|
|
|
|
|
#define DRIVERTESTS_HPP
|
|
|
|
|
|
|
|
|
|
#include "drivenengine.hpp"
|
|
|
|
|
|
2022-02-21 19:28:54 -05:00
|
|
|
UniqueDrivenEngine make_DriverStubTest();
|
2021-10-14 15:51:38 -04:00
|
|
|
UniqueDrivenEngine make_DriverListenTest();
|
|
|
|
|
UniqueDrivenEngine make_DriverWebServerTest();
|
|
|
|
|
UniqueDrivenEngine make_DriverDNSFailTest();
|
|
|
|
|
UniqueDrivenEngine make_DriverPrintClockTest();
|
2021-11-14 15:57:18 -05:00
|
|
|
UniqueDrivenEngine make_RunUnitTests();
|
2021-10-14 15:51:38 -04:00
|
|
|
|
|
|
|
|
#endif // DRIVERTESTS_HPP
|
|
|
|
|
|