2022-01-19 23:46:41 +01:00
|
|
|
#ifndef H_Test
|
|
|
|
|
#define H_Test
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <TreeNodeDiskUsage.hpp>
|
|
|
|
|
#include <Display.hpp>
|
|
|
|
|
#include <AnsiTerminal.hpp>
|
2022-01-22 17:25:16 +01:00
|
|
|
#include <EventManager.hpp>
|
2022-01-19 23:46:41 +01:00
|
|
|
|
|
|
|
|
using std::cout;
|
|
|
|
|
using std::cerr;
|
|
|
|
|
using std::endl;
|
|
|
|
|
|
|
|
|
|
void runTests(int argc, char *argv[]);
|
|
|
|
|
|
|
|
|
|
#endif
|