Fixed missing headers for test

This commit is contained in:
2021-10-11 22:03:11 -07:00
parent 6ebcf8c5dc
commit 2e38770061
3 changed files with 16 additions and 6 deletions

View File

@ -28,5 +28,4 @@ jobs:
- name: Test
run: |
ls build/
./build/test/tests

View File

@ -5,12 +5,11 @@
* https://opensource.org/licenses/MIT
*/
#include "poker/card.h"
#include "poker/poker.h"
#include "tests.h"
int main() {
int32_t main() {
return (
test_card() == 0 &&
test_poker() == 0
test_card() ||
test_poker()
);
}

12
test/tests.h Normal file
View File

@ -0,0 +1,12 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "poker/card.h"
#include "poker/poker.h"
int32_t main();