diff options
Diffstat (limited to 'contrib/ntp/tests/libntp/octtoint.c')
-rw-r--r-- | contrib/ntp/tests/libntp/octtoint.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/ntp/tests/libntp/octtoint.c b/contrib/ntp/tests/libntp/octtoint.c index 4b0f94c..5c03d6d 100644 --- a/contrib/ntp/tests/libntp/octtoint.c +++ b/contrib/ntp/tests/libntp/octtoint.c @@ -4,6 +4,16 @@ #include "unity.h" + +void test_SingleDigit(void); +void test_MultipleDigits(void); +void test_Zero(void); +void test_MaximumUnsigned32bit(void); +void test_Overflow(void); +void test_IllegalCharacter(void); +void test_IllegalDigit(void); + + void test_SingleDigit(void) { const char* str = "5"; u_long actual; |