mirror of
https://github.com/ThrowTheSwitch/CMock
synced 2025-02-02 10:08:41 -05:00
30 lines
724 B
C
30 lines
724 B
C
/* =========================================================================
|
|
CMock - Automatic Mock Generation for C
|
|
ThrowTheSwitch.org
|
|
Copyright (c) 2007-25 Mike Karlesky, Mark VanderVoord, & Greg Williams
|
|
SPDX-License-Identifier: MIT
|
|
========================================================================= */
|
|
|
|
#include "unity.h"
|
|
#include "Types.h"
|
|
#include "UsartTransmitBufferStatus.h"
|
|
|
|
AT91S_USART Usart0Peripheral;
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void testReadyToTransmitShouldReturnStatusPerTransmitBufferReadyStatus(void)
|
|
{
|
|
AT91C_BASE_US0->US_CSR = 0;
|
|
TEST_ASSERT(!Usart_ReadyToTransmit());
|
|
|
|
AT91C_BASE_US0->US_CSR = AT91C_US_TXRDY;
|
|
TEST_ASSERT(Usart_ReadyToTransmit());
|
|
}
|