ULT renaming: Sysman Manager tests

Related-To: NEO-2236

Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
Adam Cetnerowski 2021-01-26 09:47:01 +01:00 committed by Compute-Runtime-Automation
parent 4ffcf88a92
commit 3574858c6c
1 changed files with 4 additions and 4 deletions

View File

@ -49,7 +49,7 @@ class SysmanKmdManagerFixture : public ::testing::Test {
}
};
TEST_F(SysmanKmdManagerFixture, CheckRequestSingleSucceedsAndPowerValueIsRetreivedCorrectlyAllowingSetToFalse) {
TEST_F(SysmanKmdManagerFixture, GivenAllowSetCallsFalseWhenRequestingSingleThenPowerValueIsCorrect) {
pKmdSysManager->allowSetCalls = false;
ze_result_t result = ZE_RESULT_SUCCESS;
@ -71,7 +71,7 @@ TEST_F(SysmanKmdManagerFixture, CheckRequestSingleSucceedsAndPowerValueIsRetreiv
EXPECT_EQ(value, pKmdSysManager->mockPowerLimit1);
}
TEST_F(SysmanKmdManagerFixture, CheckRequestSingleSucceedsAndPowerValueIsRetreivedChangedSetThenRetreivedAgainCorrectlyAllowingSetToTrue) {
TEST_F(SysmanKmdManagerFixture, GivenAllowSetCallsTrueWhenRequestingSingleThenPowerValueIsCorrect) {
pKmdSysManager->allowSetCalls = true;
ze_result_t result = ZE_RESULT_SUCCESS;
@ -125,7 +125,7 @@ TEST_F(SysmanKmdManagerFixture, CheckRequestSingleSucceedsAndPowerValueIsRetreiv
EXPECT_EQ(value, (iniitialPl1 + increase));
}
TEST_F(SysmanKmdManagerFixture, CheckRequestSingleGetCommandWithCorruptInformationVerifyCallFails) {
TEST_F(SysmanKmdManagerFixture, GivenAllowSetCallsFalseAndCorruptedDataWhenRequestingSingleThenCallFails) {
pKmdSysManager->allowSetCalls = false;
ze_result_t result = ZE_RESULT_SUCCESS;
@ -169,7 +169,7 @@ TEST_F(SysmanKmdManagerFixture, CheckRequestSingleGetCommandWithCorruptInformati
EXPECT_NE(ZE_RESULT_SUCCESS, result);
}
TEST_F(SysmanKmdManagerFixture, CheckRequestSingleSetCommandWithCorruptInformationVerifyCallFails) {
TEST_F(SysmanKmdManagerFixture, GivenAllowSetCallsTrueAndCorruptedDataWhenRequestingSingleThenCallFails) {
pKmdSysManager->allowSetCalls = true;
ze_result_t result = ZE_RESULT_SUCCESS;