diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-03-07 03:45:34 +0800 |
---|---|---|
committer | Daniel Kirchner <daniel@ekpyron.org> | 2018-03-13 18:20:11 +0800 |
commit | 49eaf7c3fd98a2983ac7c9f0994fbca0b73a33c1 (patch) | |
tree | 5ed183d69280b4f2c561af4e2169a304f7362ddd /test/libsolidity/SyntaxTestParser.h | |
parent | f2614be95f71a274db3c172661726dd007e90cf7 (diff) | |
download | dexon-solidity-49eaf7c3fd98a2983ac7c9f0994fbca0b73a33c1.tar dexon-solidity-49eaf7c3fd98a2983ac7c9f0994fbca0b73a33c1.tar.gz dexon-solidity-49eaf7c3fd98a2983ac7c9f0994fbca0b73a33c1.tar.bz2 dexon-solidity-49eaf7c3fd98a2983ac7c9f0994fbca0b73a33c1.tar.lz dexon-solidity-49eaf7c3fd98a2983ac7c9f0994fbca0b73a33c1.tar.xz dexon-solidity-49eaf7c3fd98a2983ac7c9f0994fbca0b73a33c1.tar.zst dexon-solidity-49eaf7c3fd98a2983ac7c9f0994fbca0b73a33c1.zip |
Infrastructure for extracting syntax tests in separate test files.
Diffstat (limited to 'test/libsolidity/SyntaxTestParser.h')
-rw-r--r-- | test/libsolidity/SyntaxTestParser.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/test/libsolidity/SyntaxTestParser.h b/test/libsolidity/SyntaxTestParser.h new file mode 100644 index 00000000..9e295a0b --- /dev/null +++ b/test/libsolidity/SyntaxTestParser.h @@ -0,0 +1,57 @@ +/* + This file is part of solidity. + + solidity 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. + + solidity 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 solidity. If not, see <http://www.gnu.org/licenses/>. +*/ + +#pragma once + +#include <iosfwd> +#include <string> +#include <vector> +#include <utility> + +namespace dev +{ +namespace solidity +{ +namespace test +{ + +struct SyntaxTestExpectation +{ + std::string type; + std::string message; +}; + +struct SyntaxTest +{ + std::string source; + std::vector<SyntaxTestExpectation> expectations; +}; + +class SyntaxTestParser +{ +public: + SyntaxTestParser() = default; + + SyntaxTest parse(std::string const& _filename); +private: + std::string parseSource(std::istream& _stream); + std::vector<SyntaxTestExpectation> parseExpectations(std::istream& _stream); +}; + +} +} +} |