mirror of
https://github.com/nasa/trick.git
synced 2024-12-23 06:52:26 +00:00
14a75508a3
Changed all header file once include variables to follow the same naming convention and not start with any underscores. Also deleted old incorrect copyright notices. Also removed $Id: tags from all files. Fixes #14. Fixes #22.
56 lines
1.1 KiB
C++
56 lines
1.1 KiB
C++
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "trick_utils/comm/include/tc.h"
|
|
#include "trick_utils/comm/include/tc_proto.h"
|
|
#include "trick_utils/comm/include/attributes.h"
|
|
#include "trick_utils/comm/include/hs_msg.h"
|
|
#include "trick_utils/comm/include/trick_byteswap.h"
|
|
#include "trick_utils/comm/include/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 );
|
|
}
|
|
|