forked from fibercrypto/libfibercrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[test] refs fibercrypto#5 Initial test util.coin
- Loading branch information
Maykel Arias Torres
committed
Mar 28, 2020
1 parent
b59a03c
commit 881a092
Showing
4 changed files
with
33 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
|
||
#include <check.h> | ||
#include <string.h> | ||
#include <time.h> | ||
|
||
#include "fcassert.h" | ||
#include "fcerrors.h" | ||
#include "fcstring.h" | ||
#include "fctest.h" | ||
#include "libfibercrypto.h" | ||
|
||
START_TEST(TestNewGenericOutput) { | ||
printf("Load TestNewGenericOutput \n"); | ||
core__AltcoinMetadata fakeMeta; | ||
} | ||
END_TEST | ||
|
||
Suite *check_util_coin(void) { | ||
Suite *s = suite_create("Load check_util_coin"); | ||
TCase *tc; | ||
tc = tcase_create("check_util_coin"); | ||
tcase_add_checked_fixture(tc, setup, teardown); | ||
tcase_add_test(tc, TestNewGenericOutput); | ||
suite_add_tcase(s, tc); | ||
return s; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,5 +12,6 @@ | |
|
||
Suite *check_util_cipher(void); | ||
Suite *check_util_datetime(void); | ||
Suite *check_util_coin(void); | ||
|
||
#endif |