ULT renaming: Enqueue Marker tests

Related-To: NEO-2236

Change-Id: I8f4158adbfe3597ad9fe75b77d00f890f1370340
Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
Adam Cetnerowski 2020-08-11 21:29:17 +02:00 committed by sys_ocldev
parent 4b0aad316f
commit 881d7328bc
1 changed files with 2 additions and 2 deletions

View File

@ -31,12 +31,12 @@ TEST_F(clEnqueueMarkerTests, GivenValidCommandQueueWhenEnqueingMarkerThenSuccess
class CommandWithoutKernelTypesTests : public testing::TestWithParam<unsigned int /*commandTypes*/> {
};
TEST_P(CommandWithoutKernelTypesTests, commandWithoutKernelTypes) {
TEST_P(CommandWithoutKernelTypesTests, GivenCommandTypeWhenCheckingIsCommandWithoutKernelThenTrueIsReturned) {
unsigned int commandType = GetParam();
EXPECT_TRUE(isCommandWithoutKernel(commandType));
};
TEST_P(CommandWithoutKernelTypesTests, commandZeroType) {
TEST_F(CommandWithoutKernelTypesTests, GivenZeroWhenCheckingIsCommandWithoutKernelThenFalseIsReturned) {
EXPECT_FALSE(isCommandWithoutKernel(0));
};