testunusedvar: Added simple testing for unused variables

This commit is contained in:
Daniel Marjamäki 2008-09-24 11:28:00 +00:00
parent 6881a364a2
commit 534445951c
2 changed files with 54 additions and 1 deletions

View File

@ -1,6 +1,6 @@
SRCS=CheckBufferOverrun.cpp CheckClass.cpp CheckHeaders.cpp CheckMemoryLeak.cpp CheckOther.cpp CommonCheck.cpp tokenize.cpp
OBJS=$(SRCS:%.cpp=%.o)
TESTS=testbufferoverrun.o testcharvar.o testconstructors.o testdivision.o testmemleak.o
TESTS=testbufferoverrun.o testcharvar.o testconstructors.o testdivision.o testmemleak.o testunusedvar.o
%.o: %.cpp
g++ -Wall -pedantic -g -I. -o $@ -c $^

53
testunusedvar.cpp Normal file
View File

@ -0,0 +1,53 @@
// Check for unused variables..
#include "MiniCppUnit.h"
#include "tokenize.h"
#include "CheckOther.h"
#include <sstream>
extern std::ostringstream errout;
class TestUnusedVar : public TestFixture<TestUnusedVar>
{
private:
void check( const char code[] )
{
// Tokenize..
tokens = tokens_back = NULL;
std::istringstream istr(code);
TokenizeCode( istr );
SimplifyTokenList();
// Clear the error buffer..
errout.str("");
// Check for unused variables..
CheckStructMemberUsage();
}
public:
TEST_FIXTURE( TestUnusedVar )
{
TEST_CASE( structmember1 );
}
void structmember1()
{
check( "struct abc\n"
"{\n"
" int a;\n"
" int b;\n"
" int c;\n"
"};\n" );
ASSERT_EQUALS( std::string("[test.cpp:2]: struct member 'abc::a' is never read\n"
"[test.cpp:3]: struct member 'abc::b' is never read\n"
"[test.cpp:4]: struct member 'abc::c' is never read\n"), errout.str() );
}
};
REGISTER_FIXTURE( TestUnusedVar )