You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
802 B
33 lines
802 B
#include "unity.h"
|
|
#include "Types.h"
|
|
#include "AdcModel.h"
|
|
#include "MockTaskScheduler.h"
|
|
#include "MockTemperatureCalculator.h"
|
|
#include "MockTemperatureFilter.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void testDoGetSampleShouldReturn_FALSE_WhenTaskSchedulerReturns_FALSE(void)
|
|
{
|
|
TaskScheduler_DoAdc_ExpectAndReturn(FALSE);
|
|
TEST_ASSERT_EQUAL(FALSE, AdcModel_DoGetSample());
|
|
}
|
|
|
|
void testDoGetSampleShouldReturn_TRUE_WhenTaskSchedulerReturns_TRUE(void)
|
|
{
|
|
TaskScheduler_DoAdc_ExpectAndReturn(TRUE);
|
|
TEST_ASSERT_EQUAL(TRUE, AdcModel_DoGetSample());
|
|
}
|
|
|
|
void testProcessInputShouldDelegateToTemperatureCalculatorAndPassResultToFilter(void)
|
|
{
|
|
TemperatureCalculator_Calculate_ExpectAndReturn(21473, 23.5f);
|
|
TemperatureFilter_ProcessInput_Expect(23.5f);
|
|
AdcModel_ProcessInput(21473);
|
|
}
|
|
|