Skip to content

Commit 2be2c7f

Browse files
committed
Upgrade coverage for this PR
1 parent 942d62d commit 2be2c7f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

test/test_nist_cavs_detail.hpp

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,12 @@ struct test_object_hash
4646

4747
test_object_hash() = delete;
4848

49-
// Construct hash test object with result only (no message and no length).
49+
// Construct this hash test object by setting the result only.
50+
// There is no message and there is no length available for
51+
// this hash test object.
52+
5053
explicit test_object_hash(const std::string& str_result)
51-
: my_result
54+
: my_result // LCOV_EXCL_LINE
5255
{
5356
[&str_result]()
5457
{
@@ -58,7 +61,8 @@ struct test_object_hash
5861
}
5962
{ }
6063

61-
// Construct hash test object with all of message, length and result.
64+
// Construct this hash test object with all of message, length and result.
65+
6266
explicit test_object_hash(const std::string& str_data, const std::string& str_result)
6367
: my_length { str_data.size() / static_cast<size_type>(UINT8_C(2)) },
6468
my_msg

0 commit comments

Comments
 (0)