simpletest.cpp 5.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * MIT License
  3. *
  4. * Copyright (c) 2019 Alexey Edelev <semlanik@gmail.com>
  5. *
  6. * This file is part of QtProtobuf project https://git.semlanik.org/semlanik/qtprotobuf
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy of this
  9. * software and associated documentation files (the "Software"), to deal in the Software
  10. * without restriction, including without limitation the rights to use, copy, modify,
  11. * merge, publish, distribute, sublicense, and/or sell copies of the Software, and
  12. * to permit persons to whom the Software is furnished to do so, subject to the following
  13. * conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in all copies
  16. * or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
  19. * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  20. * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
  21. * FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  22. * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  23. * DEALINGS IN THE SOFTWARE.
  24. */
  25. #include "qtprotobufnamespace/tests/stepchildenummessage.h"
  26. #include "qtprotobufnamespace/tests/simpleboolmessage.h"
  27. #include "qtprotobufnamespace/tests/simpleintmessage.h"
  28. #include "qtprotobufnamespace/tests/simplesintmessage.h"
  29. #include "qtprotobufnamespace/tests/simpleuintmessage.h"
  30. #include "qtprotobufnamespace/tests/simpleint64message.h"
  31. #include "qtprotobufnamespace/tests/simplesint64message.h"
  32. #include "qtprotobufnamespace/tests/simpleuint64message.h"
  33. #include "qtprotobufnamespace/tests/simplefixedint32message.h"
  34. #include "qtprotobufnamespace/tests/simplefixedint64message.h"
  35. #include "qtprotobufnamespace/tests/simplesfixedint32message.h"
  36. #include "qtprotobufnamespace/tests/simplesfixedint64message.h"
  37. #include "qtprotobufnamespace/tests/simplestringmessage.h"
  38. #include "qtprotobufnamespace/tests/simplefloatmessage.h"
  39. #include "qtprotobufnamespace/tests/simpledoublemessage.h"
  40. #include "qtprotobufnamespace/tests/simpleenummessage.h"
  41. #include "qtprotobufnamespace/tests/simpleenumlistmessage.h"
  42. #include "qtprotobufnamespace/tests/simplefileenummessage.h"
  43. #include "qtprotobufnamespace/tests/simpleexternalenummessage.h"
  44. #include "qtprotobufnamespace1/externaltests/externalcomplexmessage.h"
  45. #include "qtprotobufnamespace/tests/complexmessage.h"
  46. #include "qtprotobufnamespace/tests/simplebytesmessage.h"
  47. #include "qtprotobufnamespace/tests/repeatedintmessage.h"
  48. #include "qtprotobufnamespace/tests/repeatedbytesmessage.h"
  49. #include "qtprotobufnamespace/tests/repeateddoublemessage.h"
  50. #include "qtprotobufnamespace/tests/repeatedcomplexmessage.h"
  51. #include "qtprotobufnamespace/tests/repeatedfloatmessage.h"
  52. #include "qtprotobufnamespace/tests/repeatedsintmessage.h"
  53. #include "qtprotobufnamespace/tests/repeatedstringmessage.h"
  54. #include "qtprotobufnamespace/tests/repeateduintmessage.h"
  55. #include "qtprotobufnamespace/tests/repeatedint64message.h"
  56. #include "qtprotobufnamespace/tests/repeatedsint64message.h"
  57. #include "qtprotobufnamespace/tests/repeateduint64message.h"
  58. #include "qtprotobufnamespace/tests/repeatedfixedintmessage.h"
  59. #include "qtprotobufnamespace/tests/repeatedsfixedintmessage.h"
  60. #include "qtprotobufnamespace/tests/repeatedfixedint64message.h"
  61. #include "qtprotobufnamespace/tests/repeatedsfixedint64message.h"
  62. #include "qtprotobufnamespace/tests/repeatedexternalcomplexmessage.h"
  63. #include "qtprotobufnamespace/tests/simplesint32stringmapmessage.h"
  64. #include "qtprotobufnamespace/tests/simplestringstringmapmessage.h"
  65. #include "qtprotobufnamespace/tests/emptymessage.h"
  66. #include "qtprotobufnamespace/tests/message_uderscore_name.h"
  67. #include "qtprotobufnamespace/tests/messageuderscorename.h"
  68. #include "qtprotobufnamespace/tests/messageunderscorefield.h"
  69. #include "qtprotobufnamespace/tests/priormessageunderscorefield.h"
  70. #include "qtprotobufnamespace/tests/followingmessageunderscorefield.h"
  71. #include "qtprotobufnamespace/tests/combinedmessageunderscorefield.h"
  72. #include "qtprotobufnamespace/tests/sequence/testmessagesequence.h"
  73. #include "qtprotobufnamespace/tests/sequence/testmessagesequence2.h"
  74. #include "qtprotobufnamespace/tests/sequence/cyclingseconddependency.h"
  75. #include "qtprotobufnamespace/tests/sequence/cyclingfirstdependency.h"
  76. #include "qtprotobufnamespace/tests/messageuppercasereserved.h"
  77. #include "qtprotobufnamespace/tests/messagereserved.h"
  78. #include "qtprotobufnamespace/tests/messageenumreserved.h"
  79. #include "qtprotobufnamespace/tests/sequence/repeatedfieldsequence.h"
  80. #include "qtprotobufnamespace/tests/sequence/repeatedfieldsequence2.h"
  81. #include "qtprotobufnamespace/tests/sequence/mapfieldsequence.h"
  82. #include "qtprotobufnamespace/tests/sequence/mapfieldsequence2.h"
  83. #include "qtprotobufnamespace/tests/sequence/lowercasesequence.h"
  84. #include "qtprotobufnamespace/tests/sequence/lowercasesequence2.h"
  85. #include "qtprotobufnamespace/tests/lowercasemessagename.h"
  86. #include "qtprotobufnamespace/tests/lowercasefieldmessagename.h"
  87. #include "qtprotobufnamespace/tests/messageuppercase.h"
  88. #include "qtprotobufnamespace/tests/simpleint32complexmessagemapmessage.h"
  89. #include "emptymessage.h"
  90. #include "simpleintmessage.h"
  91. #include "nopackageexternalmessage.h"
  92. #include "qtprotobufnamespace/tests/nopackagemessage.h"
  93. #include "globalenums.h"
  94. #include "../test_protobuf/simpletest.cpp.inc"