1
0
forked from Alepha/Alepha

Make unit tests use the testing lib main function.

This commit is contained in:
2023-10-24 00:58:38 -04:00
parent 2ebb60e888
commit cafc66e09f
14 changed files with 8 additions and 88 deletions

View File

@ -7,16 +7,7 @@ static_assert( __cplusplus > 2020'00 );
namespace
{
namespace UnitTest= Alepha::Testing::exports;
}
int
main( const int argcnt, const char *const *const argvec )
{
return UnitTest::runAllTests( argcnt, argvec );
}
namespace
{
using namespace Alepha::Utility::exports::evaluation_helpers;
using namespace UnitTest::literals;
using UnitTest::TableTest;

View File

@ -5,13 +5,6 @@ static_assert( __cplusplus > 2020'00 );
#include <Alepha/Utility/evaluation_helpers.h>
int
main( const int argcnt, const char *const *const argvec )
{
return Alepha::Testing::runAllTests( argcnt, argvec );
}
namespace
{
using namespace Alepha::Testing::exports;