Skip to content

Commit

Permalink
docs updated number of unit tests to 3378 (63)
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
silverqx committed Aug 16, 2024
1 parent 0c40fe7 commit 30de830
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,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 __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.
The code is written in the modern c++20 way and is __heavily__ tested with __3378__ 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 ❤️

Expand Down Expand Up @@ -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 __3366 unit tests__ passed 😮
- all __3378 unit tests__ passed 😮

The following list fastly summarizes all the `TinyORM` features.

Expand Down Expand Up @@ -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 __3366 unit tests__ 🤯
- a huge amount of code is unit tested, currently __3378 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 🤙
Expand Down
4 changes: 2 additions & 2 deletions docs/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ 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 3366 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 3378 unit and functional tests.
keywords: [c++ orm, prologue, tinyorm]
---

# Prologue

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. 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 __3378__ 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).
Expand Down
2 changes: 1 addition & 1 deletion docs/features-summary.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 __3366 unit tests__ 🤯
- a huge amount of code is unit tested, currently __3378 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 🤙
Expand Down
2 changes: 1 addition & 1 deletion docs/supported-compilers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 __3366 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 __3378 unit tests__ 😮💥.

<div id="supported-compilers">

Expand Down
2 changes: 1 addition & 1 deletion docs/tinydrivers/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,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 __3366 unit tests__ passed 😮
- all __3378 unit tests__ passed 😮

:::info
Currently, only the `MySQL` database driver is supported and finished.
Expand Down

0 comments on commit 30de830

Please sign in to comment.