@ -1,22 +1,22 @@
#ifndef TASCHENRECHNER_H
#define TASCHENRECHNER_H
//add function
// add function
double add(double a, double b);
//minus function
// minus function
double minus(double a, double b);
//multiply function
// multiply function
double multiply(double a, double b);
//divide function
// divide function
double divide(double a, double b);
//get input and check if its a number
// get input and check if its a number
double testForNumber();
//get input and check if its a operator
// get input and check if its a operator
char testForOperator();
// Square root function
@ -56,7 +56,7 @@ int mode(int userChoice);
int displayMenu();
//Conversion Functions
// Conversion Functions
double ConMeter(double meter, int startingUnit, int endingUnit);
double ConMeterToFoot(double distance, int startingUnit, int endingUnit);
@ -156,4 +156,40 @@ void test_exponentialFunction(void) {
TEST_ASSERT_EQUAL_FLOAT(1.0, exponentialFunction(0.0));
}
// Test case for subtraction
void test_performOperation_Subtraction(void) {
// Arrange
int result;
// Act
result = performOperation(10, '-', 3);
// Assert
TEST_ASSERT_EQUAL_INT(7, result);
// Test case for multiplication
void test_performOperation_Multiplication(void) {
result = performOperation(4, '*', 6);
TEST_ASSERT_EQUAL_INT(24, result);
// Test case for division
void test_performOperation_Division(void) {
result = performOperation(8, '/', 2);
TEST_ASSERT_EQUAL_INT(4, result);
#endif // TEST