fix README table

This commit is contained in:
Pro3757 2023-05-30 13:50:23 +05:30
parent 4580469122
commit ded275d75e

View File

@ -55,37 +55,37 @@ More information about building GoogleTest can be found at
| Feature | Description | | Feature | Description |
| ---------------------------- | --------------------------------------------- | | ---------------------------- | --------------------------------------------- |
| xUnit test framework | Googletest is based on the | | xUnit test framework | Googletest is based on the |
: : [xUnit](https\://en.wikipedia.org/wiki/XUnit) : | | [xUnit](https\://en.wikipedia.org/wiki/XUnit) |
: : testing framework, a popular architecture for : | | testing framework, a popular architecture for |
: : unit testing : | | unit testing |
| Test discovery | Googletest automatically discovers and runs | | Test discovery | Googletest automatically discovers and runs |
: : your tests, eliminating the need to manually : | | your tests, eliminating the need to manually |
: : register your tests : | | register your tests |
| Rich set of assertions | Googletest provides a variety of assertions, | | Rich set of assertions | Googletest provides a variety of assertions, |
: : such as equality, inequality, exceptions, and : | | such as equality, inequality, exceptions, and |
: : more, making it easy to test your code : | | more, making it easy to test your code |
| User-defined assertions | You can define your own assertions with | | User-defined assertions | You can define your own assertions with |
: : Googletest, making it simple to write tests : | | Googletest, making it simple to write tests |
: : that are specific to your code : | | that are specific to your code |
| Death tests | Googletest supports death tests, which verify | | Death tests | Googletest supports death tests, which verify |
: : that your code exits in a certain way, making : | | that your code exits in a certain way, making |
: : it useful for testing error-handling code : | | it useful for testing error-handling code |
| Fatal and non-fatal failures | You can specify whether a test failure should | | Fatal and non-fatal failures | You can specify whether a test failure should |
: : be treated as fatal or non-fatal with : | | be treated as fatal or non-fatal with |
: : Googletest, allowing tests to continue : | | Googletest, allowing tests to continue |
: : running even if a failure occurs : | | running even if a failure occurs |
| Value-parameterized tests | Googletest supports value-parameterized | | Value-parameterized tests | Googletest supports value-parameterized |
: : tests, which run multiple times with : | | tests, which run multiple times with |
: : different input values, making it useful for : | | different input values, making it useful for |
: : testing functions that take different inputs : | | testing functions that take different inputs |
| Type-parameterized tests | Googletest also supports type-parameterized | | Type-parameterized tests | Googletest also supports type-parameterized |
: : tests, which run with different data types, : | | tests, which run with different data types, |
: : making it useful for testing functions that : | | making it useful for testing functions that |
: : work with different data types : | | work with different data types |
| Various options for running | Googletest provides many options for running | | Various options for running | Googletest provides many options for running |
: tests : tests, including running individual tests, : | tests | tests, including running individual tests, |
: : running tests in a specific order, and : | | running tests in a specific order, and |
: : running tests in parallel : | | running tests in parallel |
## Supported Platforms ## Supported Platforms