Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Mate Pek committed Aug 28, 2021
1 parent 314ff4e commit 917b123
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [3.7.0]
## [3.6.28]

Feature Added: CppUTest Framework Support with tests
### Added

- (experimental) CppUTest Framework Support

## [3.6.27] - 2021-08-09

Expand Down
6 changes: 6 additions & 0 deletions test/cpp/cpputest/cpputest1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ TEST(FirstTestGroup, FirstTest)
}

TEST(FirstTestGroup, SecondTest)
{
std::this_thread::sleep_for(std::chrono::milliseconds(2000));
CHECK(false);
}

TEST(FirstTestGroup, ThirdTest)
{
std::this_thread::sleep_for(std::chrono::milliseconds(2000));
//FAIL("Fail me!");
Expand Down

0 comments on commit 917b123

Please sign in to comment.