Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ TEST_F(ProxyMethodHandlingFixture, FieldMethodsAreCreatedInShmOnlyForEnabledComb
Pair(UniqueMethodIdentifier{kDummyFieldId2, MethodType::kSet}, _)));
}

TEST_F(ProxyMethodHandlingFixture, FieldGetNotRegisteredDoesAbort)
TEST_F(ProxyMethodHandlingFixture, FieldMethodGetEnabledInConfigurationWhichIsNotCreatedInShmTerminates)
{
// Given a field whose Get and Set are enabled in config, but only the Set was registered (Get unregistered
// showcasing a programming bug).
Expand All @@ -509,7 +509,7 @@ TEST_F(ProxyMethodHandlingFixture, FieldGetNotRegisteredDoesAbort)
SCORE_LANGUAGE_FUTURECPP_EXPECT_CONTRACT_VIOLATED(proxy_->SetupMethods());
}

TEST_F(ProxyMethodHandlingFixture, FieldSetNotRegisteredDoesAbort)
TEST_F(ProxyMethodHandlingFixture, FieldMethodSetEnabledInConfigurationWhichIsNotCreatedInShmTerminates)
{
// Given a field whose Get and Set are enabled in config, but only the Get was registered (Set unregistered
// showcasing a programming bug).
Expand Down
Loading