add testing infrastructure
This commit is contained in:
18
src/App.cpp
Normal file
18
src/App.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
#include "App.hpp"
|
||||
|
||||
void App::run() {
|
||||
|
||||
std::cout << "im an app and im running !!" << std::endl;
|
||||
|
||||
(void)foo();
|
||||
|
||||
return;
|
||||
|
||||
}
|
||||
|
||||
int32_t App::foo() {
|
||||
|
||||
return 12;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user