Tests
test_calculator
Tests for math functions.
test_division_1()
Test 1 division()
Source code in tests/test_calculator.py
135 136 137 138 139 140 141 | |
test_division_2()
Test 2 division()
Source code in tests/test_calculator.py
144 145 146 147 148 | |
test_division_3()
Test 3 division()
Source code in tests/test_calculator.py
151 152 153 154 155 | |
test_division_4()
Test 4 division()
Source code in tests/test_calculator.py
158 159 160 161 162 | |
test_division_5()
Test 5 for division()
Source code in tests/test_calculator.py
165 166 167 168 169 170 171 172 173 174 | |
test_multiplicacion_1()
Test 1 for multiplicacion()
Source code in tests/test_calculator.py
95 96 97 98 99 | |
test_multiplicacion_2()
Test 2 for multiplicacion()
Source code in tests/test_calculator.py
102 103 104 105 106 | |
test_multiplicacion_3()
Test 3 for multiplicacion()
Source code in tests/test_calculator.py
109 110 111 112 113 | |
test_multiplicacion_4()
Test 4 for multiplicacion()
Source code in tests/test_calculator.py
116 117 118 119 120 | |
test_multiplicacion_5()
Test 5 for multiplicacion()
Source code in tests/test_calculator.py
123 124 125 126 127 128 129 130 131 132 | |
test_resta_1()
Test 1 for resta()
Source code in tests/test_calculator.py
55 56 57 58 59 | |
test_resta_2()
Test 2 for resta()
Source code in tests/test_calculator.py
62 63 64 65 66 | |
test_resta_3()
Test 3 for resta()
Source code in tests/test_calculator.py
69 70 71 72 73 | |
test_resta_4()
Test 4 for resta()
Source code in tests/test_calculator.py
76 77 78 79 80 | |
test_resta_5()
Test 5 for resta()
Source code in tests/test_calculator.py
83 84 85 86 87 88 89 90 91 92 | |
test_suma_1()
Test 1 for suma()
Source code in tests/test_calculator.py
15 16 17 18 19 | |
test_suma_2()
Test 2 for suma()
Source code in tests/test_calculator.py
22 23 24 25 26 | |
test_suma_3()
Test 3 for suma()
Source code in tests/test_calculator.py
29 30 31 32 33 | |
test_suma_4()
Test 4 for suma()
Source code in tests/test_calculator.py
36 37 38 39 40 | |
test_suma_5()
Test 5 for suma()
Source code in tests/test_calculator.py
43 44 45 46 47 48 49 50 51 52 | |
test_endpoints_calculator
Tests for calculator api endpoints.
test_calculator_addition_1()
Test /calculator/addition/ endpoint
Source code in tests/test_endpoints_calculator.py
11 12 13 14 15 16 17 | |
test_calculator_addition_2()
Test /calculator/addition/ endpoint
Source code in tests/test_endpoints_calculator.py
20 21 22 23 24 25 26 | |
test_calculator_addition_3()
Test /calculator/addition/ endpoint
Source code in tests/test_endpoints_calculator.py
29 30 31 32 33 34 35 | |
test_calculator_divide_1()
Test /calculator/divide/ endpoint
Source code in tests/test_endpoints_calculator.py
38 39 40 41 42 43 44 | |
test_calculator_divide_2()
Test /calculator/divide/ endpoint
Source code in tests/test_endpoints_calculator.py
47 48 49 50 51 52 53 | |
test_calculator_divide_3()
Test /calculator/divide/ endpoint
Source code in tests/test_endpoints_calculator.py
56 57 58 59 60 61 62 | |
test_calculator_multiply_1()
Test /calculator/multiply/ endpoint
Source code in tests/test_endpoints_calculator.py
65 66 67 68 69 70 71 | |
test_calculator_multiply_2()
Test /calculator/multiply/ endpoint
Source code in tests/test_endpoints_calculator.py
74 75 76 77 78 79 80 | |
test_calculator_multiply_3()
Test /calculator/multiply/ endpoint
Source code in tests/test_endpoints_calculator.py
83 84 85 86 87 88 89 | |
test_calculator_substract_1()
Test /calculator/substract/ endpoint
Source code in tests/test_endpoints_calculator.py
92 93 94 95 96 97 98 | |
test_calculator_substract_2()
Test /calculator/substract/ endpoint
Source code in tests/test_endpoints_calculator.py
101 102 103 104 105 106 107 | |
test_calculator_substract_3()
Test /calculator/substract/ endpoint
Source code in tests/test_endpoints_calculator.py
110 111 112 113 114 115 116 | |
test_endpoints_health
Tests for health api endpoints.
test_read_main()
Test /health/status/ endpoint
Source code in tests/test_endpoints_health.py
11 12 13 14 15 16 17 | |