trick/trick_source/trick_utils/comm/test/TCDevCopyTest.cpp
Alex Lin d3acfa5fc0 Test code does not work with new directory locations.
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.
2015-06-22 16:11:08 -05:00

57 lines
1.1 KiB
C++

#include <gtest/gtest.h>
#include "trick/tc.h"
#include "trick/attributes.h"
#include "trick/hs_msg.h"
#include "trick/tc_proto.h"
#include "trick/trick_byteswap.h"
#include "trick/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 );
}