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:
parent
4b0aad316f
commit
881d7328bc
|
@ -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));
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue