-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #112 from adamfowleruk/feature-89
v2.1.0-beta2 Beta of the Exposure and Risk API
- Loading branch information
Showing
60 changed files
with
5,443 additions
and
2,130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright 2021 Herald Project Contributors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
|
||
#include "catch.hpp" | ||
|
||
#include "herald/herald.h" | ||
|
||
|
||
TEST_CASE("coverage-catch-all", "[coverage][catch-all]") { | ||
SECTION("coverage-catch-all") { | ||
using namespace herald::datatype; | ||
|
||
// TODO Instantiate all templates to ensure GCov picks them up | ||
|
||
|
||
Base64String myString; | ||
|
||
REQUIRE("wibble" != myString.encoded()); | ||
} | ||
} |
Oops, something went wrong.