add testing infrastructure
This commit is contained in:
19
src/App.hpp
Normal file
19
src/App.hpp
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <iostream>
|
||||
#include <cstdint>
|
||||
|
||||
class App {
|
||||
|
||||
public:
|
||||
App() = default;
|
||||
~App() = default;
|
||||
|
||||
void run();
|
||||
|
||||
private:
|
||||
|
||||
int32_t foo();
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user