mirror of
https://github.com/nasa/trick.git
synced 2024-12-21 06:03:10 +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.
57 lines
1.2 KiB
C++
57 lines
1.2 KiB
C++
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "trick_utils/comm/include/tc.h"
|
|
#include "trick_utils/comm/include/attributes.h"
|
|
#include "trick_utils/comm/include/hs_msg.h"
|
|
#include "trick_utils/comm/include/tc_proto.h"
|
|
#include "trick_utils/comm/include/trick_byteswap.h"
|
|
#include "trick_utils/comm/include/trick_error_hndlr.h"
|
|
|
|
|
|
class TCDevCopyTest : public testing::Test {
|
|
|
|
protected:
|
|
TCDevCopyTest(){}
|
|
~TCDevCopyTest(){}
|
|
|
|
TCDevice* src_device;
|
|
TCDevice* dest_device;
|
|
|
|
void SetUp(){
|
|
|
|
src_device = (TCDevice *) malloc(sizeof(TCDevice));
|
|
memset( (void *)src_device,'\0',sizeof(TCDevice) );
|
|
|
|
dest_device = (TCDevice *) malloc(sizeof(TCDevice));
|
|
memset( (void *)dest_device,'\0',sizeof(TCDevice) );
|
|
}
|
|
|
|
void TearDown(){
|
|
|
|
free(src_device);
|
|
free(dest_device);
|
|
}
|
|
};
|
|
|
|
TEST_F( TCDevCopyTest, testNullSrcDest ) {
|
|
|
|
int tcdev_status = tc_dev_copy( NULL, NULL );
|
|
|
|
EXPECT_EQ( tcdev_status, -1 );
|
|
}
|
|
|
|
TEST_F( TCDevCopyTest, testNullSrc ) {
|
|
|
|
int tcdev_status = tc_dev_copy( dest_device, NULL );
|
|
|
|
EXPECT_EQ( tcdev_status, -1 );
|
|
}
|
|
|
|
TEST_F( TCDevCopyTest, testNullDest ) {
|
|
|
|
int tcdev_status = tc_dev_copy( NULL, src_device );
|
|
|
|
EXPECT_EQ( tcdev_status, -1 );
|
|
}
|