mirror of
https://github.com/ThrowTheSwitch/CMock
synced 2025-03-13 16:51:12 -04:00
38 lines
775 B
C
38 lines
775 B
C
#include "unity.h"
|
|
#include "Types.h"
|
|
#include "UsartHardware.h"
|
|
#include "AT91SAM7X256.h"
|
|
#include "MockUsartConfigurator.h"
|
|
#include "MockUsartPutChar.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void testInitShouldConfigureUsartPeripheralByCallingConfiguratorAppropriately(void)
|
|
{
|
|
Usart_ConfigureUsartIO_Expect();
|
|
Usart_EnablePeripheralClock_Expect();
|
|
Usart_Reset_Expect();
|
|
Usart_ConfigureMode_Expect();
|
|
Usart_SetBaudRateRegister_Expect(73);
|
|
Usart_Enable_Expect();
|
|
|
|
UsartHardware_Init(73);
|
|
}
|
|
|
|
void testTransmitStringShouldSendDesiredStringOutUsingUsart(void)
|
|
{
|
|
Usart_PutChar_Expect('h');
|
|
Usart_PutChar_Expect('e');
|
|
Usart_PutChar_Expect('l');
|
|
Usart_PutChar_Expect('l');
|
|
Usart_PutChar_Expect('o');
|
|
|
|
UsartHardware_TransmitString("hello");
|
|
}
|