mirror of
https://github.com/nasa/trick.git
synced 2024-12-23 06:52:26 +00:00
d3acfa5fc0
Adjusted all of the source code to point to the header files in their new locations. Adjusted the makefiles for the header locations as well. Added .gitignore files in the test directories to ignore test object code.
56 lines
1.0 KiB
C++
56 lines
1.0 KiB
C++
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "trick/tc.h"
|
|
#include "trick/tc_proto.h"
|
|
#include "trick/attributes.h"
|
|
#include "trick/hs_msg.h"
|
|
#include "trick/trick_byteswap.h"
|
|
#include "trick/trick_error_hndlr.h"
|
|
|
|
class TCIsValidTest : public testing::Test {
|
|
|
|
protected:
|
|
TCIsValidTest(){}
|
|
~TCIsValidTest(){}
|
|
|
|
TCDevice* device;
|
|
|
|
void SetUp(){
|
|
|
|
device = (TCDevice *) malloc(sizeof(TCDevice));
|
|
memset( (void *)device,'\0',sizeof(TCDevice) );
|
|
|
|
device->socket = 1;
|
|
}
|
|
|
|
void TearDown(){
|
|
|
|
free(device);
|
|
}
|
|
};
|
|
|
|
TEST_F( TCIsValidTest, testNullDevice ) {
|
|
|
|
int tcisvalid_status = tc_isValid( NULL );
|
|
|
|
EXPECT_EQ( tcisvalid_status, 0 );
|
|
}
|
|
|
|
TEST_F( TCIsValidTest, testInvalidSocket ) {
|
|
|
|
device->socket = TRICKCOMM_INVALID_SOCKET;
|
|
|
|
int tcisvalid_status = tc_isValid( device );
|
|
|
|
EXPECT_EQ( tcisvalid_status, 0 );
|
|
}
|
|
|
|
TEST_F( TCIsValidTest, testValidSocket ) {
|
|
|
|
int tcisvalid_status = tc_isValid( device );
|
|
|
|
EXPECT_EQ( tcisvalid_status, 0 );
|
|
}
|
|
|