• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef TESTS_PARSER_TEST_H
2 #define TESTS_PARSER_TEST_H
3 
4 namespace flatbuffers {
5 namespace tests {
6 
7 void ErrorTest();
8 void EnumOutOfRangeTest();
9 void IntegerOutOfRangeTest();
10 void InvalidFloatTest();
11 void UnicodeInvalidSurrogatesTest();
12 void InvalidUTF8Test();
13 void ValueTest();
14 void NestedListTest();
15 void EnumStringsTest();
16 void EnumValueTest();
17 void IntegerBoundaryTest();
18 void ValidFloatTest();
19 void UnicodeTest();
20 void UnicodeTestAllowNonUTF8();
21 void UnicodeTestGenerateTextFailsOnNonUTF8();
22 void UnicodeSurrogatesTest();
23 void UnknownFieldsTest();
24 void ParseUnionTest();
25 void ValidSameNameDifferentNamespaceTest();
26 void WarningsAsErrorsTest();
27 void StringVectorDefaultsTest();
28 void FieldIdentifierTest();
29 
30 }  // namespace tests
31 }  // namespace flatbuffers
32 
33 #endif  // TESTS_PARSER_TEST_H
34