2015-02-26 09:02:31 -06:00
|
|
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
2015-06-22 16:11:08 -05:00
|
|
|
#include "trick/tc.h"
|
|
|
|
#include "trick/attributes.h"
|
|
|
|
#include "trick/tc_proto.h"
|
|
|
|
#include "trick/trick_byteswap.h"
|
|
|
|
#include "trick/trick_error_hndlr.h"
|
2015-02-26 09:02:31 -06:00
|
|
|
|
|
|
|
|
|
|
|
class TCReadByteSwapTest : public testing::Test {
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TCReadByteSwapTest(){}
|
|
|
|
~TCReadByteSwapTest(){}
|
|
|
|
|
|
|
|
TCDevice* device;
|
|
|
|
|
|
|
|
void SetUp(){
|
|
|
|
|
|
|
|
device = (TCDevice *) malloc(sizeof(TCDevice));
|
|
|
|
memset( (void *)device,'\0',sizeof(TCDevice) );
|
|
|
|
}
|
|
|
|
|
|
|
|
void TearDown(){
|
2016-11-08 10:25:07 +01:00
|
|
|
|
2015-02-26 09:02:31 -06:00
|
|
|
free(device);
|
|
|
|
}
|
|
|
|
};
|