Browse Source

Merge branch 'feature/calculator-square' into Alpha

remotes/origin/Alpha
fdai7207 2 years ago
parent
commit
0af8f59673
  1. 9
      src/calculatorSquare.c
  2. 8
      src/calculatorSquare.h
  3. 36
      tests/test_calculatorSquare.c

9
src/calculatorSquare.c

@ -0,0 +1,9 @@
#include "calculatorSquare.h"
// Note:
/* This Function may or may not be implemented in actual program, even if it is merged to the main branch.
If it is temporarily not included in the main Program, then this has a role in future Development of the Project */
float calculatorSquare(float num)
{
return num*num;
}

8
src/calculatorSquare.h

@ -0,0 +1,8 @@
#ifndef CALCULATORSQUARE_H
#define CALCULATORSQUARE_H
#include<stdio.h>
#include<stdlib.h>
float calculatorSquare(float num);
#endif // CALCULATORSQUARE_H

36
tests/test_calculatorSquare.c

@ -0,0 +1,36 @@
#ifdef TEST
#include "unity.h"
#include "calculatorSquare.c"
// Note:
/* This Function may or may not be implemented in actual program, even if it is merged to the main branch.
If it is temporarily not included in the main Program, then this has a role in future Development of the Project */
void setUp(void)
{
}
void tearDown(void)
{
}
void test1_calculatorMultiply(void)
{
float num, actual, expected; //Arrange
num = 26.24;
expected = num * num;
actual = calculatorSquare(num); //Act
TEST_ASSERT_EQUAL_FLOAT(expected, actual); //Assert
}
void test2_calculatorMultiply(void)
{
float num, actual, expected; //Arrange
num = 5;
expected = num * num;
actual = calculatorSquare(num); //Act
TEST_ASSERT_EQUAL_FLOAT(expected, actual); //Assert
}
#endif // TEST
Loading…
Cancel
Save