Fixed test dir.

This commit is contained in:
2021-10-01 21:30:54 -07:00
parent a93bf990dd
commit 3a6e65993d
8 changed files with 148 additions and 6 deletions

16
test/tests.c Normal file
View File

@ -0,0 +1,16 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "poker/card.h"
#include "poker/poker.h"
int main() {
return (
!test_card() &&
!test_poker2()
);
}