diff --git a/README.md b/README.md index 79a6af76a..736bb0300 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ TinyORM is a modern ORM library that makes interacting with a database extremely simple. -The code is written in the modern c++20 way and is __heavily__ tested with __3269__ unit and functional tests. Almost all the query builder methods are unit tested. The TinyORM's query builder code and the code which is responsible for obtaining relationships, is tested by functional tests against all supported databases. The code coverage is good enough to guarantee API and behavior compatibility. +The code is written in the modern c++20 way and is __heavily__ tested with __3366__ unit and functional tests. Almost all the query builder methods are unit tested. The TinyORM's query builder code and the code which is responsible for obtaining relationships, is tested by functional tests against all supported databases. The code coverage is good enough to guarantee API and behavior compatibility. ## Donations ❤️ @@ -67,7 +67,7 @@ The following list summarizes all the `TinyDrivers` and `TinyMySql` libraries' f - re-using the current `SqlQuery` instance to re-execute the same or another query - detaching from the result set (associated to release memory) - query size, number of affected rows, last inserted ID, testing `isNull()`, ... - - all __3269 unit tests__ passed 😮 + - all __3366 unit tests__ passed 😮 The following list fastly summarizes all the `TinyORM` features. @@ -109,7 +109,7 @@ The following list fastly summarizes all the `TinyORM` features. - __the `tom` console application with tab completion for all shells (pwsh, bash, zsh)__ 🥳 - scaffolding of models, migrations, and seeders - impressive models scaffolding, every feature that is supported by models can be generated using the `tom make:model` cli command -- a huge amount of code is unit tested, currently __3269 unit tests__ 🤯 +- a huge amount of code is unit tested, currently __3366 unit tests__ 🤯 - C++20 only, with all the latest features used like concepts/constraints, ranges, smart pointers (no `new` keyword in the whole code 😎), folding expressions - qmake and CMake build systems support - CMake FetchContent module support 🤙 diff --git a/docs/README.mdx b/docs/README.mdx index 3303c1c2a..018ee0a5f 100644 --- a/docs/README.mdx +++ b/docs/README.mdx @@ -3,7 +3,7 @@ sidebar_position: 0 sidebar_label: 🔥 Prologue slug: / hide_table_of_contents: true -description: TinyORM is a modern C++ ORM library that makes interacting with a database extremely simple. It depends on the QtCore and QtSql libraries. The code is written in the modern C++20 way and is heavily tested with 3269 unit and functional tests. +description: TinyORM is a modern C++ ORM library that makes interacting with a database extremely simple. It depends on the QtCore and QtSql libraries. The code is written in the modern C++20 way and is heavily tested with 3366 unit and functional tests. keywords: [c++ orm, prologue, tinyorm] --- @@ -11,7 +11,7 @@ keywords: [c++ orm, prologue, tinyorm] TinyORM is a modern C++ ORM library that makes interacting with a database extremely simple. It depends on the `QtCore` and `QtSql` libraries. -The code is written in the modern C++20 way and is __heavily__ tested with __3269__ unit and functional tests. Almost all the query builder methods are unit tested. The TinyORM's query builder code and the code which is responsible for obtaining relationships, is tested by functional tests against all supported databases. The code coverage is good enough to guarantee API and behavior compatibility. +The code is written in the modern C++20 way and is __heavily__ tested with __3366__ unit and functional tests. Almost all the query builder methods are unit tested. The TinyORM's query builder code and the code which is responsible for obtaining relationships, is tested by functional tests against all supported databases. The code coverage is good enough to guarantee API and behavior compatibility. :::tip For a quick look at what's inside, check out the [Features Summary](features-summary.mdx). diff --git a/docs/features-summary.mdx b/docs/features-summary.mdx index c88d27e25..48a600a91 100644 --- a/docs/features-summary.mdx +++ b/docs/features-summary.mdx @@ -53,7 +53,7 @@ The following list fastly summarizes all the `TinyORM` features. - __the `tom` console application with tab completion for all shells (pwsh, bash, zsh)__ 🥳 - scaffolding of models, migrations, and seeders - impressive models scaffolding, every feature that is supported by models can be generated using the `tom make:model` cli command -- a huge amount of code is unit tested, currently __3269 unit tests__ 🤯 +- a huge amount of code is unit tested, currently __3366 unit tests__ 🤯 - C++20 only, with all the latest features used like concepts/constraints, ranges, smart pointers (no `new` keyword in the whole code 😎), folding expressions - qmake and CMake build systems support - CMake FetchContent module support 🤙 diff --git a/docs/supported-compilers.mdx b/docs/supported-compilers.mdx index 849a1b0bd..bb56bf304 100644 --- a/docs/supported-compilers.mdx +++ b/docs/supported-compilers.mdx @@ -8,7 +8,7 @@ keywords: [c++ orm, supported compilers, supported build systems, tinyorm] # Supported Compilers -Following compilers are backed up by the GitHub Action [workflows](https://github.com/silverqx/TinyORM/tree/main/.github/workflows) (CI pipelines), these workflows also include more then __3269 unit tests__ 😮💥. +Following compilers are backed up by the GitHub Action [workflows](https://github.com/silverqx/TinyORM/tree/main/.github/workflows) (CI pipelines), these workflows also include more then __3366 unit tests__ 😮💥.
diff --git a/docs/tinydrivers/getting-started.mdx b/docs/tinydrivers/getting-started.mdx index 5f2452922..7faa4ce7d 100644 --- a/docs/tinydrivers/getting-started.mdx +++ b/docs/tinydrivers/getting-started.mdx @@ -29,7 +29,7 @@ It was designed to drop the `QtSql` dependency while maintaining backward compat - re-using the current `SqlQuery` instance to re-execute the same or another query - detaching from the result set (associated to release memory) - query size, number of affected rows, last inserted ID, testing `isNull()`, ... - - all __3269 unit tests__ passed 😮 + - all __3366 unit tests__ passed 😮 :::info Currently, only the `MySQL` database driver is supported and finished.