From ca3c241fe99bcc63c636f4a276fa36e48b688b5b Mon Sep 17 00:00:00 2001 From: lganzzzo Date: Wed, 10 Feb 2021 03:12:33 +0200 Subject: [PATCH] Update Readme. Uncommend all tests. --- README.md | 23 +++++++++++++---------- test/oatpp-postgresql/tests.cpp | 10 +++++----- 2 files changed, 18 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index b12365b..0cba0be 100644 --- a/README.md +++ b/README.md @@ -60,13 +60,16 @@ public: ### Supported Data Types -- INT2 -- INT4 -- INT8 -- TIMESTAMP -- TEXT -- VARCHAR -- FLOAT4 -- FLOAT8 -- BOOL -- UUID +|Type|Supported|In Array| +|---|:---:|:---:| +|INT2|+|+| +|INT4|+|+| +|INT8|+|+| +|TIMESTAMP|+|+| +|TEXT|+|+| +|VARCHAR|+|+| +|FLOAT4|+|+| +|FLOAT8|+|+| +|BOOL|+|+| +|UUID|+|+| +|**Other Types**|-|-| diff --git a/test/oatpp-postgresql/tests.cpp b/test/oatpp-postgresql/tests.cpp index df8680f..0c9daaa 100644 --- a/test/oatpp-postgresql/tests.cpp +++ b/test/oatpp-postgresql/tests.cpp @@ -12,12 +12,12 @@ namespace { void runTests() { -// OATPP_RUN_TEST(oatpp::test::postgresql::ql_template::ParserTest); -// -// OATPP_RUN_TEST(oatpp::test::postgresql::types::IntTest); -// OATPP_RUN_TEST(oatpp::test::postgresql::types::FloatTest); + OATPP_RUN_TEST(oatpp::test::postgresql::ql_template::ParserTest); + + OATPP_RUN_TEST(oatpp::test::postgresql::types::IntTest); + OATPP_RUN_TEST(oatpp::test::postgresql::types::FloatTest); OATPP_RUN_TEST(oatpp::test::postgresql::types::ArrayTest); -// OATPP_RUN_TEST(oatpp::test::postgresql::types::InterpretationTest); + OATPP_RUN_TEST(oatpp::test::postgresql::types::InterpretationTest); }