2010-12-30 09:46:44 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2012-01-01 00:05:37 +01:00
|
|
|
* Copyright (C) 2007-2012 Daniel Marjamäki and Cppcheck team.
|
2010-12-30 09:46:44 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TestUtilsH
|
|
|
|
#define TestUtilsH
|
2011-12-23 22:31:48 +01:00
|
|
|
|
2010-12-30 09:46:44 +01:00
|
|
|
#include "settings.h"
|
|
|
|
#include "tokenize.h"
|
2011-12-23 22:31:48 +01:00
|
|
|
|
|
|
|
class Token;
|
2010-12-30 09:46:44 +01:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
class givenACodeSampleToTokenize {
|
2010-12-30 09:46:44 +01:00
|
|
|
private:
|
|
|
|
Settings _settings;
|
|
|
|
Tokenizer _tokenizer;
|
|
|
|
|
|
|
|
public:
|
2012-05-16 18:04:03 +02:00
|
|
|
givenACodeSampleToTokenize(const char sample[], bool createOnly = false)
|
|
|
|
: _tokenizer(&_settings, 0) {
|
|
|
|
std::istringstream iss(sample);
|
|
|
|
if (createOnly)
|
|
|
|
_tokenizer.list.createTokens(iss);
|
|
|
|
else
|
|
|
|
_tokenizer.tokenize(iss, "test.cpp");
|
2010-12-30 09:46:44 +01:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
const Token* tokens() const {
|
2012-02-18 11:55:05 +01:00
|
|
|
return _tokenizer.tokens();
|
2010-12-30 09:46:44 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif//ndef TestUtilsH
|