Skip to content

Commit d257764

Browse files
committed
📚 [README]
1 parent f843b5b commit d257764

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<a href="http://www.boost.org/LICENSE_1_0.txt" target="_blank">![Boost Licence](http://img.shields.io/badge/license-boost-blue.svg)</a>
22
<a href="https://github.com/cpp-testing/GUnit/releases" target="_blank">![Version](https://badge.fury.io/gh/cpp-testing%2FGUnit.svg)</a>
3-
<a href="https://github.com/cpp-testing/GUnit/actions/workflows/linux.yml" target="_blank">![Build](https://github.com/cpp-testing/GUnit/actions/workflows/linux.yml/badge.svg
4-
<a href="https://github.com/cpp-testing/GUnit/actions/workflows/macos.yml" target="_blank">![Build](https://github.com/cpp-testing/GUnit/actions/workflows/macos.yml/badge.svg
5-
<a href="https://github.com/cpp-testing/GUnit/actions/workflows/windows.yml" target="_blank">![Build](https://github.com/cpp-testing/GUnit/actions/workflows/windows.yml/badge.svg
3+
<a href="https://github.com/cpp-testing/GUnit/actions/workflows/linux.yml" target="_blank">![Build](https://github.com/cpp-testing/GUnit/actions/workflows/linux.yml/badge.svg)</a>
4+
<a href="https://github.com/cpp-testing/GUnit/actions/workflows/macos.yml" target="_blank">![Build](https://github.com/cpp-testing/GUnit/actions/workflows/macos.yml/badge.svg)</a>
5+
<a href="https://github.com/cpp-testing/GUnit/actions/workflows/windows.yml" target="_blank">![Build](https://github.com/cpp-testing/GUnit/actions/workflows/windows.yml/badge.svg)</a>
66
<a href="https://codecov.io/gh/cpp-testing/GUnit" target="_blank">![Coveralls](https://codecov.io/gh/cpp-testing/GUnit/branch/master/graph/badge.svg)</a>
77
<a href="http://github.com/cpp-testing/GUnit/issues" target="_blank">![Github Issues](https://img.shields.io/github/issues/cpp-testing/GUnit.svg)</a>
88

@@ -30,8 +30,8 @@
3030

3131
> #### No more base classes, labels as identifiers and special assertions - [GUnit.GTest](docs/GTest.md) / [GUnit.GTest-Lite](docs/GTest-Lite.md)
3232
```cpp
33-
Google.Test | GUnit.GTest
34-
-----------------------------------------------+----------------------------------------------------
33+
Google.Test | GUnit.GTest
34+
-----------------------------------------------+-----------------------------------------
3535
#include <gtest/gtest.h> | #include <GUnit.h>
3636
|
3737
struct CalcTest : testing::Test { | GTEST("Calc Test") {
@@ -60,7 +60,7 @@
6060
[ OK ] CalcTest.ShouldReturnSumOf2Numbers| [ SHOULD ] return sum of 2 numbers
6161
[ RUN ] CalcTest.ShouldThrowIfDivisionBy0 | [ SHOULD ] throw if division by 0
6262
[ OK ] CalcTest.ShouldThrowIfDivisionBy0 | [ OK ] Calc Test (0 ms)
63-
[----------] 2 tests from CalcTest (1 ms total)| [----------] 1 tests from Example (0 ms total)
63+
[----------] 2 tests from CalcTest (1 ms total)| [----------] 1 tests from Example
6464
```
6565

6666
> #### No more hand written mocks - [GUnit.GMock](docs/GMock.md)
@@ -73,8 +73,8 @@
7373
};
7474
```
7575
```cpp
76-
Google.Test | GUnit.GMock
77-
-----------------------------------------------+----------------------------------------------------
76+
Google.Test | GUnit.GMock
77+
-----------------------------------------------+--------------------------------------
7878
#include <gmock/gmock.h> | #include <GUnit.h>
7979
|
8080
struct mock_interface : interface { |

0 commit comments

Comments
 (0)