Browse Source
Revert "Test arrangements"
Revert "Test arrangements"
This reverts commit cd78a96c03
.
remotes/origin/feature/update-current-customer-account-balance
fdlt3817
2 years ago
33 changed files with 842 additions and 210 deletions
-
2build/test/cache/defines_dependency.yml
-
12build/test/cache/input.yml
-
299build/test/cache/test_mainMenu.c
-
63build/test/cache/test_updateCustomerAccountBalance.c
-
10build/test/dependencies/cmock.d
-
0build/test/dependencies/force_build
-
1build/test/dependencies/mainMenu.d
-
4build/test/dependencies/test_mainMenu.d
-
4build/test/dependencies/test_mainMenu_runner.d
-
5build/test/dependencies/test_updateCustomerAccountBalance.d
-
4build/test/dependencies/test_updateCustomerAccountBalance_runner.d
-
6build/test/dependencies/unity.d
-
5build/test/dependencies/updateCustomerAccountBalance.d
-
BINbuild/test/out/c/cmock.o
-
BINbuild/test/out/c/mainMenu.o
-
BINbuild/test/out/c/test_mainMenu.o
-
BINbuild/test/out/c/test_mainMenu_runner.o
-
BINbuild/test/out/c/test_updateCustomerAccountBalance.o
-
BINbuild/test/out/c/test_updateCustomerAccountBalance_runner.o
-
BINbuild/test/out/c/unity.o
-
BINbuild/test/out/c/updateCustomerAccountBalance.o
-
BINbuild/test/out/test_mainMenu.out
-
BINbuild/test/out/test_updateCustomerAccountBalance.out
-
299build/test/preprocess/files/test_mainMenu.c
-
63build/test/preprocess/files/test_updateCustomerAccountBalance.c
-
3build/test/preprocess/includes/test_mainMenu.c
-
3build/test/preprocess/includes/test_updateCustomerAccountBalance.c
-
30build/test/results/test_mainMenu.pass
-
12build/test/runners/test_mainMenu_runner.c
-
25src/updateCustomerAccountBalance.c
-
21tests/test_LoginCustomer.c
-
145tests/test_mainMenu.c
-
34tests/test_updateCustomerAccountBalance.c
@ -1,3 +1,3 @@ |
|||
--- |
|||
src/updateCustomerAccountBalance.c: |
|||
src/mainMenu.c: |
|||
- TEST |
@ -0,0 +1,299 @@ |
|||
#include "src/mainMenu.h" |
|||
#include "/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h" |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
void setUp(void) |
|||
|
|||
{ |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
void tearDown(void) |
|||
|
|||
{ |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
void test_agePermissionValidAge(void) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
int validAge[83]; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
_Bool |
|||
|
|||
validAgeResult[83]; |
|||
|
|||
|
|||
|
|||
int j=0; |
|||
|
|||
|
|||
|
|||
for(int i =18;i<101;i++){ |
|||
|
|||
|
|||
|
|||
validAge[j]= i; |
|||
|
|||
j++; |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<83;i++){ |
|||
|
|||
|
|||
|
|||
validAgeResult[i] = agePermission(validAge[i]); |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<83;i++){ |
|||
|
|||
|
|||
|
|||
do {if ((validAgeResult[i])) {} else {UnityFail( ((" Expected TRUE Was FALSE")), (UNITY_UINT)((UNITY_UINT)(44)));}} while(0); |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
void test_agePermissionInvalidAge(void) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
int invalidAge[117]; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
_Bool |
|||
|
|||
invalidAgeResult[117]; |
|||
|
|||
|
|||
|
|||
int j=0; |
|||
|
|||
|
|||
|
|||
for(int i =-100;i<18;i++){ |
|||
|
|||
|
|||
|
|||
invalidAge[j]= i; |
|||
|
|||
j++; |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<117;i++){ |
|||
|
|||
|
|||
|
|||
invalidAgeResult[i] = agePermission(invalidAge[i]); |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<117;i++){ |
|||
|
|||
|
|||
|
|||
do {if (!(invalidAgeResult[i])) {} else {UnityFail( ((" Expected FALSE Was TRUE")), (UNITY_UINT)((UNITY_UINT)(81)));}} while(0); |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
void test_IsInteger(void) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
char* inputIsInteger[] = {"-10000000","-2000000","-354698","-66667","-7878","-987","-64","-5","0","1","2","10","201","333","4321","56974","698751","7878989","88954621" }; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
_Bool |
|||
|
|||
inputIsIntegerResult[19]; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<19;i++) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
inputIsIntegerResult[i] = checkIfInteger(inputIsInteger[i]); |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<19;i++) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
do {if ((inputIsIntegerResult[i])) {} else {UnityFail( ((" Expected TRUE Was FALSE")), (UNITY_UINT)((UNITY_UINT)(110)));}} while(0); |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
void test_IsNotInteger(void) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
char* inputIsNotInteger[] = {"0.15","3.141592653589793238","5.3254f","-6.264","-7878.3261","foo","Bar","FIZZ","buzZ","joHN","jAnE","foo-bar","3,15","2k13",""," ","-","+","/*-+.,/=" }; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
_Bool |
|||
|
|||
inputIsNotIntegerResult[19]; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<19;i++) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
inputIsNotIntegerResult[i] = checkIfInteger(inputIsNotInteger[i]); |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<19;i++) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
do {if (!(inputIsNotIntegerResult[i])) {} else {UnityFail( ((" Expected FALSE Was TRUE")), (UNITY_UINT)((UNITY_UINT)(139)));}} while(0); |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
} |
@ -1,63 +0,0 @@ |
|||
#include "src/updateCustomerAccountBalance.h" |
|||
#include "/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h" |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
void setUp(void) |
|||
|
|||
{ |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
void tearDown(void) |
|||
|
|||
{ |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
void test_updateAvailableAccountBalanceSuccess(void){ |
|||
|
|||
|
|||
|
|||
int id1 = 1234; |
|||
|
|||
int id2 = 1327; |
|||
|
|||
int id3 = 1666; |
|||
|
|||
|
|||
|
|||
int newBalance1=500; |
|||
|
|||
int newBalance2=800; |
|||
|
|||
int newBalance3=700; |
|||
|
|||
|
|||
|
|||
_Bool results1=updateAvailableAccountBalance(id1,newBalance1); |
|||
|
|||
_Bool results2=updateAvailableAccountBalance(id2,newBalance2); |
|||
|
|||
_Bool results3=updateAvailableAccountBalance(id3,newBalance3); |
|||
|
|||
|
|||
|
|||
do {if ((results1)) {} else {UnityFail( ((" Expected TRUE Was FALSE")), (UNITY_UINT)((UNITY_UINT)(29)));}} while(0); |
|||
|
|||
do {if ((results2)) {} else {UnityFail( ((" Expected TRUE Was FALSE")), (UNITY_UINT)((UNITY_UINT)(30)));}} while(0); |
|||
|
|||
do {if ((results3)) {} else {UnityFail( ((" Expected TRUE Was FALSE")), (UNITY_UINT)((UNITY_UINT)(31)));}} while(0); |
|||
|
|||
|
|||
|
|||
} |
@ -1,6 +1,6 @@ |
|||
build/test/out/c/cmock.o: \ |
|||
/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/cmock/src/cmock.c \ |
|||
/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/cmock/src/cmock.h \ |
|||
/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/cmock/src/cmock_internals.h \ |
|||
/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h \ |
|||
/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity_internals.h |
|||
/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/cmock/src/cmock.c \ |
|||
/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/cmock/src/cmock.h \ |
|||
/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/cmock/src/cmock_internals.h \ |
|||
/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h \ |
|||
/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/unity/src/unity_internals.h |
@ -0,0 +1 @@ |
|||
build/test/out/c/mainMenu.o: src/mainMenu.c src/mainMenu.h |
@ -0,0 +1,4 @@ |
|||
build/test/out/c/test_mainMenu.o: tests/test_mainMenu.c \ |
|||
/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h \ |
|||
/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/unity/src/unity_internals.h \ |
|||
src/mainMenu.h |
@ -0,0 +1,4 @@ |
|||
build/test/out/c/test_mainMenu_runner.o: \ |
|||
build/test/runners/test_mainMenu_runner.c \ |
|||
/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h \ |
|||
/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/unity/src/unity_internals.h |
@ -1,5 +0,0 @@ |
|||
build/test/out/c/test_updateCustomerAccountBalance.o: \ |
|||
tests/test_updateCustomerAccountBalance.c \ |
|||
/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h \ |
|||
/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity_internals.h \ |
|||
src/updateCustomerAccountBalance.h |
@ -1,4 +0,0 @@ |
|||
build/test/out/c/test_updateCustomerAccountBalance_runner.o: \ |
|||
build/test/runners/test_updateCustomerAccountBalance_runner.c \ |
|||
/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h \ |
|||
/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity_internals.h |
@ -1,4 +1,4 @@ |
|||
build/test/out/c/unity.o: \ |
|||
/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.c \ |
|||
/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h \ |
|||
/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity_internals.h |
|||
/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/unity/src/unity.c \ |
|||
/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h \ |
|||
/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/unity/src/unity_internals.h |
@ -1,5 +0,0 @@ |
|||
build/test/out/c/updateCustomerAccountBalance.o: \ |
|||
src/updateCustomerAccountBalance.c src/updateCustomerAccountBalance.h \ |
|||
src/currentCustomerAccountBalance.c \ |
|||
src/currentCustomerAccountBalance.h src/_file_information.h \ |
|||
src/lineReplacer.h |
@ -0,0 +1,299 @@ |
|||
#include "src/mainMenu.h" |
|||
#include "/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h" |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
void setUp(void) |
|||
|
|||
{ |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
void tearDown(void) |
|||
|
|||
{ |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
void test_agePermissionValidAge(void) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
int validAge[83]; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
_Bool |
|||
|
|||
validAgeResult[83]; |
|||
|
|||
|
|||
|
|||
int j=0; |
|||
|
|||
|
|||
|
|||
for(int i =18;i<101;i++){ |
|||
|
|||
|
|||
|
|||
validAge[j]= i; |
|||
|
|||
j++; |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<83;i++){ |
|||
|
|||
|
|||
|
|||
validAgeResult[i] = agePermission(validAge[i]); |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<83;i++){ |
|||
|
|||
|
|||
|
|||
do {if ((validAgeResult[i])) {} else {UnityFail( ((" Expected TRUE Was FALSE")), (UNITY_UINT)((UNITY_UINT)(44)));}} while(0); |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
void test_agePermissionInvalidAge(void) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
int invalidAge[117]; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
_Bool |
|||
|
|||
invalidAgeResult[117]; |
|||
|
|||
|
|||
|
|||
int j=0; |
|||
|
|||
|
|||
|
|||
for(int i =-100;i<18;i++){ |
|||
|
|||
|
|||
|
|||
invalidAge[j]= i; |
|||
|
|||
j++; |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<117;i++){ |
|||
|
|||
|
|||
|
|||
invalidAgeResult[i] = agePermission(invalidAge[i]); |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<117;i++){ |
|||
|
|||
|
|||
|
|||
do {if (!(invalidAgeResult[i])) {} else {UnityFail( ((" Expected FALSE Was TRUE")), (UNITY_UINT)((UNITY_UINT)(81)));}} while(0); |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
void test_IsInteger(void) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
char* inputIsInteger[] = {"-10000000","-2000000","-354698","-66667","-7878","-987","-64","-5","0","1","2","10","201","333","4321","56974","698751","7878989","88954621" }; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
_Bool |
|||
|
|||
inputIsIntegerResult[19]; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<19;i++) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
inputIsIntegerResult[i] = checkIfInteger(inputIsInteger[i]); |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<19;i++) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
do {if ((inputIsIntegerResult[i])) {} else {UnityFail( ((" Expected TRUE Was FALSE")), (UNITY_UINT)((UNITY_UINT)(110)));}} while(0); |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
void test_IsNotInteger(void) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
char* inputIsNotInteger[] = {"0.15","3.141592653589793238","5.3254f","-6.264","-7878.3261","foo","Bar","FIZZ","buzZ","joHN","jAnE","foo-bar","3,15","2k13",""," ","-","+","/*-+.,/=" }; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
_Bool |
|||
|
|||
inputIsNotIntegerResult[19]; |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<19;i++) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
inputIsNotIntegerResult[i] = checkIfInteger(inputIsNotInteger[i]); |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<19;i++) |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
do {if (!(inputIsNotIntegerResult[i])) {} else {UnityFail( ((" Expected FALSE Was TRUE")), (UNITY_UINT)((UNITY_UINT)(139)));}} while(0); |
|||
|
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
} |
@ -1,63 +0,0 @@ |
|||
#include "src/updateCustomerAccountBalance.h" |
|||
#include "/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h" |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
void setUp(void) |
|||
|
|||
{ |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
void tearDown(void) |
|||
|
|||
{ |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
void test_updateAvailableAccountBalanceSuccess(void){ |
|||
|
|||
|
|||
|
|||
int id1 = 1234; |
|||
|
|||
int id2 = 1327; |
|||
|
|||
int id3 = 1666; |
|||
|
|||
|
|||
|
|||
int newBalance1=500; |
|||
|
|||
int newBalance2=800; |
|||
|
|||
int newBalance3=700; |
|||
|
|||
|
|||
|
|||
_Bool results1=updateAvailableAccountBalance(id1,newBalance1); |
|||
|
|||
_Bool results2=updateAvailableAccountBalance(id2,newBalance2); |
|||
|
|||
_Bool results3=updateAvailableAccountBalance(id3,newBalance3); |
|||
|
|||
|
|||
|
|||
do {if ((results1)) {} else {UnityFail( ((" Expected TRUE Was FALSE")), (UNITY_UINT)((UNITY_UINT)(29)));}} while(0); |
|||
|
|||
do {if ((results2)) {} else {UnityFail( ((" Expected TRUE Was FALSE")), (UNITY_UINT)((UNITY_UINT)(30)));}} while(0); |
|||
|
|||
do {if ((results3)) {} else {UnityFail( ((" Expected TRUE Was FALSE")), (UNITY_UINT)((UNITY_UINT)(31)));}} while(0); |
|||
|
|||
|
|||
|
|||
} |
@ -0,0 +1,3 @@ |
|||
--- |
|||
- "/var/lib/gems/3.0.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h" |
|||
- src/mainMenu.h |
@ -1,3 +0,0 @@ |
|||
--- |
|||
- "/Users/canhacioglu/.rbenv/versions/2.7.7/lib/ruby/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h" |
|||
- src/updateCustomerAccountBalance.h |
@ -0,0 +1,30 @@ |
|||
--- |
|||
:source: |
|||
:path: tests |
|||
:file: test_mainMenu.c |
|||
:successes: |
|||
- :test: test_agePermissionValidAge |
|||
:line: 15 |
|||
:message: '' |
|||
:unity_test_time: 0 |
|||
- :test: test_agePermissionInvalidAge |
|||
:line: 50 |
|||
:message: '' |
|||
:unity_test_time: 0 |
|||
- :test: test_IsInteger |
|||
:line: 87 |
|||
:message: '' |
|||
:unity_test_time: 0 |
|||
- :test: test_IsNotInteger |
|||
:line: 116 |
|||
:message: '' |
|||
:unity_test_time: 0 |
|||
:failures: [] |
|||
:ignores: [] |
|||
:counts: |
|||
:total: 4 |
|||
:passed: 4 |
|||
:failed: 0 |
|||
:ignored: 0 |
|||
:stdout: [] |
|||
:time: 0.0009556771256029606 |
@ -0,0 +1,21 @@ |
|||
#include <unity.h> |
|||
#include "LoginCustomer.h" |
|||
void setUp(){}; |
|||
void tearDown(){}; |
|||
void test_checkLogin() |
|||
{ |
|||
/*arrange*/ |
|||
bool expected_test_values_compute_to_true[] = {4==4,true==true, 1==1, false==false, 'z'=='z', '='=='=',0x1A==0x1A}; |
|||
int length_1 = sizeof(expected_test_values_compute_to_true)/sizeof(bool); |
|||
|
|||
bool expected_test_values_compute_to_false[] = {4!=4,true==false,1==0,false==true,'z'=='x','!'==')',0x1A==0x2B}; |
|||
int length_2 = sizeof(expected_test_values_compute_to_false)/sizeof(bool); |
|||
|
|||
/*act and assertions*/ |
|||
for(int i=0;i<7;++i) { |
|||
TEST_ASSERT_TRUE(checkLogin(expected_test_values_compute_to_true[i])); |
|||
} |
|||
for(int i=0;i<7;++i){ |
|||
TEST_ASSERT_FALSE(checkLogin(expected_test_values_compute_to_false[i])); |
|||
} |
|||
} |
@ -0,0 +1,145 @@ |
|||
#ifdef TEST |
|||
|
|||
#include "unity.h" |
|||
|
|||
#include "mainMenu.h" |
|||
|
|||
void setUp(void) |
|||
{ |
|||
} |
|||
|
|||
void tearDown(void) |
|||
{ |
|||
} |
|||
|
|||
void test_agePermissionValidAge(void) |
|||
{ |
|||
//Test case : 0 |
|||
|
|||
//Arrange |
|||
|
|||
int validAge[83]; |
|||
|
|||
bool validAgeResult[83]; |
|||
|
|||
int j=0; |
|||
|
|||
for(int i =18;i<101;i++){ |
|||
|
|||
validAge[j]= i; |
|||
j++; |
|||
} |
|||
|
|||
//Act |
|||
|
|||
for(int i=0;i<83;i++){ |
|||
|
|||
validAgeResult[i] = agePermission(validAge[i]); |
|||
} |
|||
|
|||
//Assert |
|||
|
|||
for(int i=0;i<83;i++){ |
|||
|
|||
TEST_ASSERT_TRUE(validAgeResult[i]); |
|||
|
|||
} |
|||
|
|||
} |
|||
|
|||
void test_agePermissionInvalidAge(void) |
|||
{ |
|||
|
|||
//Test case : 1 |
|||
|
|||
//Arrange |
|||
|
|||
int invalidAge[117]; |
|||
|
|||
bool invalidAgeResult[117]; |
|||
|
|||
int j=0; |
|||
|
|||
for(int i =-100;i<18;i++){ |
|||
|
|||
invalidAge[j]= i; |
|||
j++; |
|||
} |
|||
|
|||
//Act |
|||
|
|||
for(int i=0;i<117;i++){ |
|||
|
|||
invalidAgeResult[i] = agePermission(invalidAge[i]); |
|||
|
|||
} |
|||
|
|||
//Assert |
|||
|
|||
for(int i=0;i<117;i++){ |
|||
|
|||
TEST_ASSERT_FALSE(invalidAgeResult[i]); |
|||
|
|||
} |
|||
|
|||
} |
|||
|
|||
void test_IsInteger(void) |
|||
{ |
|||
|
|||
//Arrange |
|||
|
|||
char* inputIsInteger[] = {"-10000000","-2000000","-354698","-66667","-7878","-987","-64","-5","0","1","2","10","201","333","4321","56974","698751","7878989","88954621" }; |
|||
|
|||
bool inputIsIntegerResult[19]; |
|||
|
|||
//Act |
|||
|
|||
for(int i=0;i<19;i++) |
|||
{ |
|||
|
|||
inputIsIntegerResult[i] = checkIfInteger(inputIsInteger[i]); |
|||
|
|||
} |
|||
|
|||
//Assert |
|||
|
|||
for(int i=0;i<19;i++) |
|||
{ |
|||
|
|||
TEST_ASSERT_TRUE(inputIsIntegerResult[i]); |
|||
|
|||
} |
|||
|
|||
} |
|||
|
|||
void test_IsNotInteger(void) |
|||
{ |
|||
|
|||
//Arrange |
|||
|
|||
char* inputIsNotInteger[] = {"0.15","3.141592653589793238","5.3254f","-6.264","-7878.3261","foo","Bar","FIZZ","buzZ","joHN","jAnE","foo-bar","3,15","2k13",""," ","-","+","/*-+.,/=" }; |
|||
|
|||
bool inputIsNotIntegerResult[19]; |
|||
|
|||
//Act |
|||
|
|||
for(int i=0;i<19;i++) |
|||
{ |
|||
|
|||
inputIsNotIntegerResult[i] = checkIfInteger(inputIsNotInteger[i]); |
|||
|
|||
} |
|||
|
|||
//Assert |
|||
|
|||
for(int i=0;i<19;i++) |
|||
{ |
|||
|
|||
TEST_ASSERT_FALSE(inputIsNotIntegerResult[i]); |
|||
|
|||
} |
|||
|
|||
} |
|||
|
|||
#endif // TEST |
@ -1,34 +0,0 @@ |
|||
#ifdef TEST |
|||
|
|||
#include "unity.h" |
|||
|
|||
#include "updateCustomerAccountBalance.h" |
|||
|
|||
void setUp(void) |
|||
{ |
|||
} |
|||
|
|||
void tearDown(void) |
|||
{ |
|||
} |
|||
|
|||
void test_updateAvailableAccountBalanceSuccess(void){ |
|||
|
|||
int id1 = 1234; |
|||
int id2 = 1327; |
|||
int id3 = 1666; |
|||
|
|||
int newBalance1=500; |
|||
int newBalance2=800; |
|||
int newBalance3=700; |
|||
|
|||
bool results1=updateAvailableAccountBalance(id1,newBalance1); |
|||
bool results2=updateAvailableAccountBalance(id2,newBalance2); |
|||
bool results3=updateAvailableAccountBalance(id3,newBalance3); |
|||
|
|||
TEST_ASSERT_TRUE(results1); |
|||
TEST_ASSERT_TRUE(results2); |
|||
TEST_ASSERT_TRUE(results3); |
|||
|
|||
} |
|||
#endif |
Write
Preview
Loading…
Cancel
Save
Reference in new issue