Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions score/concurrency/synchronized_queue_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ using namespace std::literals::chrono_literals;
TEST(SynchronizedQueue, CheckFalseResponseOnPushWhenMaxQueueLengthReached)
{
RecordProperty("ASIL", "QM");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of boundary values");
RecordProperty("Verifies", "::score::platform::aas::lib::concurrency::SynchronizedQueue");
RecordProperty("Description",
Expand Down Expand Up @@ -66,7 +66,7 @@ TEST(SynchronizedQueue, CheckFalseResponseOnPushWhenMaxQueueLengthReached)
TEST(SynchronizedQueue, CheckFalseResponseOnPushWhenQueueObjectDoesNotExist)
{
RecordProperty("ASIL", "QM");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of boundary values");
RecordProperty("Verifies", "::score::platform::aas::lib::concurrency::SynchronizedQueue");
RecordProperty("Description",
Expand Down Expand Up @@ -99,7 +99,7 @@ TEST(SynchronizedQueue, CheckFalseResponseOnPushWhenQueueObjectDoesNotExist)
TEST(SynchronizedQueue, CallPopForEmptyQueue)
{
RecordProperty("ASIL", "QM");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of boundary values");
RecordProperty("Verifies", "::score::platform::aas::lib::concurrency::SynchronizedQueue");
RecordProperty("Description",
Expand Down Expand Up @@ -128,7 +128,7 @@ TEST(SynchronizedQueue, CallPopForEmptyQueue)
TEST(SynchronizedQueue, CallPushWhenPopIsWaitingForTimeout)
{
RecordProperty("ASIL", "QM");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of boundary values");
RecordProperty("Verifies", "::score::platform::aas::lib::concurrency::SynchronizedQueue");
RecordProperty("Description",
Expand Down Expand Up @@ -176,7 +176,7 @@ TEST(SynchronizedQueue, MakeStressTestForPushingFromMultipleThreads)
const std::size_t max_queue_length = num_threads * num_values_per_thread;

RecordProperty("ASIL", "QM");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of boundary values");
RecordProperty("Verifies", "::score::platform::aas::lib::concurrency::SynchronizedQueue");
RecordProperty("Description",
Expand Down
70 changes: 35 additions & 35 deletions score/json/internal/model/any_test.cpp

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions score/json/internal/model/error_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ TEST(Error, CanMakeError)
RecordProperty("Verifies", "::score::json::MakeError");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Use MakeError() to create Error instance.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -44,7 +44,7 @@ TEST(Error, CanMakeErrorWithUserMessage)
RecordProperty("Verifies", "::score::json::MakeError");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Use MakeError() with error message to create Error instance.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -59,7 +59,7 @@ TEST(Error, CanGetMessageForWrongType)
RecordProperty("Verifies", "::score::result::Error::Message");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get error message from WrongType error.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -75,7 +75,7 @@ TEST(Error, CanGetMessageForKeyNotFound)
RecordProperty("Verifies", "::score::result::Error::Message");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get error message from KeyNotFound error.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -91,7 +91,7 @@ TEST(Error, CanGetMessageForParsingError)
RecordProperty("Verifies", "::score::result::Error::Message");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get error message from ParsingError error.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -107,7 +107,7 @@ TEST(Error, CanGetMessageForInvalidFilePath)
RecordProperty("Verifies", "::score::result::Error::Message");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get error message from InvalidFilePath error.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -123,7 +123,7 @@ TEST(Error, CanGetMessageForUnknownError)
RecordProperty("Verifies", "::score::result::Error::Message");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get error message from UnknownError.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -139,7 +139,7 @@ TEST(Error, CanGetMessageForUndefinedError)
RecordProperty("Verifies", "::score::result::Error::Message");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get error message from UndefinedError.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand Down
22 changes: 11 additions & 11 deletions score/json/internal/model/number_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ TEST(Number, FromUint8ToAnyOtherType)
RecordProperty("Verifies", "::score::json::Number::As");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Tests conversion of uint8 max value to different data types.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -109,7 +109,7 @@ TEST(Number, FromUint16ToAnyOtherType)
RecordProperty("Verifies", "::score::json::Number::As");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Tests conversion of uint16 max value to different data types.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -131,7 +131,7 @@ TEST(Number, FromUint32ToAnyOtherType)
RecordProperty("Verifies", "::score::json::Number::As");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Tests conversion of uint32 max value to different data types.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -153,7 +153,7 @@ TEST(Number, FromUint64ToAnyOtherType)
RecordProperty("Verifies", "::score::json::Number::As");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Tests conversion of uint64 max value to different data types.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand Down Expand Up @@ -232,7 +232,7 @@ TEST(Number, FromInt8ToAnyOtherType)
RecordProperty("Verifies", "::score::json::Number::As");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Tests conversion of int8 different values to different data types.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -250,7 +250,7 @@ TEST(Number, FromInt16ToAnyOtherType)
RecordProperty("Verifies", "::score::json::Number::As");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Tests conversion of int16 different values to different data types.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -268,7 +268,7 @@ TEST(Number, FromInt32ToAnyOtherType)
RecordProperty("Verifies", "::score::json::Number::As");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Tests conversion of int32 different values to different data types.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -286,7 +286,7 @@ TEST(Number, FromInt64ToAnyOtherType)
RecordProperty("Verifies", "::score::json::Number::As");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Tests conversion of int64 different values to different data types.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand Down Expand Up @@ -602,7 +602,7 @@ TEST(Number, FromFloatToAnyOtherType)
RecordProperty("Verifies", "::score::json::Number::As");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Tests conversion of float values to different data types.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -614,7 +614,7 @@ TEST(Number, FromDoubleToAnyOtherType)
RecordProperty("Verifies", "::score::json::Number::As");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Tests conversion of double values to different data types.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -632,7 +632,7 @@ TEST(Number, CheckEqualOperator)
RecordProperty("Verifies", "::score::json::Number::operator==");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Tests the equal comparator of Number.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");
{
Expand Down
28 changes: 14 additions & 14 deletions score/json/internal/model/object_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ TEST_F(AttributeGettersTest, GetBoolUsingResult)
RecordProperty("Verifies", "::score::json::GetAttribute");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get bool attribute using Result<> input.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -82,7 +82,7 @@ TEST_F(AttributeGettersTest, GetBoolDirectValue)
RecordProperty("Verifies", "::score::json::GetAttribute");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get bool attribute from direct Object reference.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -97,7 +97,7 @@ TEST_F(AttributeGettersTest, GetIntegerUsingResult)
RecordProperty("Verifies", "::score::json::GetAttribute");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get signed/unsigned integer attribute using Result<> input.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -115,7 +115,7 @@ TEST_F(AttributeGettersTest, GetIntegerDirectValue)
RecordProperty("Verifies", "::score::json::GetAttribute");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get signed/unsigned integer attribute from direct Object reference.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -133,7 +133,7 @@ TEST_F(AttributeGettersTest, GetFloatingPointUsingResult)
RecordProperty("Verifies", "::score::json::GetAttribute");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get float attribute using Result<>; double retrieval is forbidden.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -151,7 +151,7 @@ TEST_F(AttributeGettersTest, GetFloatingPointDirectValue)
RecordProperty("Verifies", "::score::json::GetAttribute");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get float attribute from direct value; double retrieval is forbidden.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -169,7 +169,7 @@ TEST_F(AttributeGettersTest, GetStringUsingResult)
RecordProperty("Verifies", "::score::json::GetAttribute");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get string attribute using Result<> input.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -185,7 +185,7 @@ TEST_F(AttributeGettersTest, GetStringDirectValue)
RecordProperty("Verifies", "::score::json::GetAttribute");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get string attribute from direct Object reference.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -201,7 +201,7 @@ TEST_F(AttributeGettersTest, GetListUsingResult)
RecordProperty("Verifies", "::score::json::GetAttribute");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get list attribute using Result<> input.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -216,7 +216,7 @@ TEST_F(AttributeGettersTest, GetListDirectValue)
RecordProperty("Verifies", "::score::json::GetAttribute");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get list attribute from direct Object reference.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -231,7 +231,7 @@ TEST_F(AttributeGettersTest, GetObjectUsingResult)
RecordProperty("Verifies", "::score::json::GetAttribute");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get nested object attribute using Result<> input.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -247,7 +247,7 @@ TEST_F(AttributeGettersTest, GetObjectDirectValue)
RecordProperty("Verifies", "::score::json::GetAttribute");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Get nested object attribute from direct Object reference.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -263,7 +263,7 @@ TEST_F(AttributeGettersTest, CascadingAccessSuccessCase)
RecordProperty("Verifies", "::score::json::GetAttribute");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Traverse nested objects (widget/geometry/size/width) successfully.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand All @@ -286,7 +286,7 @@ TEST_F(AttributeGettersTest, CascadingAccessErrorCase)
RecordProperty("Verifies", "::score::json::GetAttribute");
RecordProperty("ASIL", "B");
RecordProperty("Description", "Fail gracefully when traversing with invalid keys.");
RecordProperty("TestType", "Interface test");
RecordProperty("TestType", "interface-test");
RecordProperty("DerivationTechnique", "Analysis of equivalence classes and boundary values");
RecordProperty("Priority", "3");

Expand Down
Loading
Loading