Dawn/test/tests.c

26 lines
370 B
C

/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "tests.h"
void setUp(void) {
}
void tearDown(void) {
}
int32_t main() {
return test_player_h();
// return (
// test_dealer_h() ||
// test_bet_h() ||
// test_card() ||
// test_poker()
// );
}