tests.h 1.88 KB
Newer Older
1
2
3
#ifndef TESTS_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define TESTS_H_62B23520_7C8E_11DE_8A39_0800200C9A66

4
5
6
7
#if !defined(__GNUC__) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || (__GNUC__ >= 4) // GCC supports "pragma once" correctly since 3.4
#pragma once
#endif

8
9
10
#include <string>

namespace Test {
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
	void RunAll();

	namespace Parser {
		// scalar tests
		void SimpleScalar(std::string& inputScalar, std::string& desiredOutput);
		void MultiLineScalar(std::string& inputScalar, std::string& desiredOutput);
		void LiteralScalar(std::string& inputScalar, std::string& desiredOutput);
		void FoldedScalar(std::string& inputScalar, std::string& desiredOutput);
		void ChompedFoldedScalar(std::string& inputScalar, std::string& desiredOutput);
		void ChompedLiteralScalar(std::string& inputScalar, std::string& desiredOutput);
		void FoldedScalarWithIndent(std::string& inputScalar, std::string& desiredOutput);
		void ColonScalar(std::string& inputScalar, std::string& desiredOutput);
		void QuotedScalar(std::string& inputScalar, std::string& desiredOutput);
		void CommaScalar(std::string& inputScalar, std::string& desiredOutput);
		void DashScalar(std::string& inputScalar, std::string& desiredOutput);
		void URLScalar(std::string& inputScalar, std::string& desiredOutput);

		// misc tests
		bool SimpleSeq();
		bool SimpleMap();
		bool FlowSeq();
		bool FlowMap();
33
34
		bool FlowMapWithOmittedKey();
		bool FlowMapWithOmittedValue();
35
36
		bool FlowMapWithSoloEntry();
		bool FlowMapEndingWithSoloEntry();
37
		bool QuotedSimpleKeys();
38
		bool CompressedMapAndSeq();
39
40
41
		bool NullBlockSeqEntry();
		bool NullBlockMapKey();
		bool NullBlockMapValue();
42
43
		bool SimpleAlias();
		bool AliasWithNull();
44
45
		bool AnchorInSimpleKey();
		bool AliasAsSimpleKey();
46
47
		bool ExplicitDoc();
		bool MultipleDocs();
48
49
		bool ExplicitEndDoc();
		bool MultipleDocsWithSomeExplicitIndicators();
50
	}
51
}
52
53

#endif // TESTS_H_62B23520_7C8E_11DE_8A39_0800200C9A66