trick/trick_source/trick_utils/comm/test/TCSetBlockIOTest.cpp
Michael Vetter 18f0d7e871 Remove trailing whitespaces
Makes it easier to edit the files. So if we press 'end of line' we are
really at the end of line.
2016-11-08 10:25:07 +01:00

44 lines
881 B
C++

#include <gtest/gtest.h>
#include "trick/tc.h"
#include "trick/attributes.h"
#include "trick/tc_proto.h"
#include "trick/trick_byteswap.h"
#include "trick/trick_error_hndlr.h"
class TCSetBlockIOTest : public testing::Test {
protected:
TCSetBlockIOTest(){}
~TCSetBlockIOTest(){}
TCDevice* device;
void SetUp(){
device = (TCDevice *) malloc(sizeof(TCDevice));
memset( (void *)device,'\0',sizeof(TCDevice) );
}
void TearDown(){
free(device);
}
};
TEST_F( TCSetBlockIOTest, testNoDevice ) {
int set_blockio_status = tc_set_blockio_timeout_limit( NULL, 0 );
EXPECT_EQ( set_blockio_status, -1 );
}
TEST_F( TCSetBlockIOTest, testSuccess ) {
int set_blockio_status = tc_set_blockio_timeout_limit( device, 5 );
EXPECT_EQ( set_blockio_status, 0 );
EXPECT_EQ( device->blockio_limit, 5 );
}