13 lines
290 B
C++
13 lines
290 B
C++
|
|
#ifndef DRIVERTESTS_HPP
|
||
|
|
#define DRIVERTESTS_HPP
|
||
|
|
|
||
|
|
#include "drivenengine.hpp"
|
||
|
|
|
||
|
|
UniqueDrivenEngine make_DriverListenTest();
|
||
|
|
UniqueDrivenEngine make_DriverWebServerTest();
|
||
|
|
UniqueDrivenEngine make_DriverDNSFailTest();
|
||
|
|
UniqueDrivenEngine make_DriverPrintClockTest();
|
||
|
|
|
||
|
|
#endif // DRIVERTESTS_HPP
|
||
|
|
|