Files
maxDcb-C2Core/modules/Powershell/tests/testsPowershell.cpp
T
Maxime DE CAUMIA BAILLENX 0a454e8ecd Inital commit
2023-04-26 08:28:46 +02:00

32 lines
498 B
C++

#include "../Powershell.hpp"
#ifdef __linux__
#elif _WIN32
#include <windows.h>
#endif
bool testPowershell();
int main()
{
bool res;
std::cout << "[+] testPowershell" << std::endl;
res = testPowershell();
if (res)
std::cout << "[+] Sucess" << std::endl;
else
std::cout << "[-] Failed" << std::endl;
return 0;
}
bool testPowershell()
{
// std::unique_ptr<Powershell> Powershell = std::make_unique<Powershell>();
// {
// }
return false;
}