@@ -176,15 +176,21 @@ typename FamilyType::XY_COLOR_BLT::COLOR_DEPTH getColorDepth(size_t patternSize)
176176 return depth;
177177}
178178
179- HWTEST2_P (BlitColorTests, givenCommandStreamWhenCallToDispatchMemoryFillThenColorDepthAreProgrammedCorrectly, BlitPlatforms) {
180- auto patternSize = GetParam ();
179+ HWTEST2_F (BlitColorTests, givenCommandStreamAndPaternSizeEqualOneWhenCallToDispatchMemoryFillThenColorDepthAreProgrammedCorrectly, BlitPlatforms) {
180+ size_t patternSize = 1 ;
181+ auto expecttedDepth = getColorDepth<FamilyType>(patternSize);
182+ GivenLinearStreamWhenCallDispatchBlitMemoryColorFillThenCorrectDepthIsProgrammed<FamilyType> test (pDevice);
183+ test.TestBodyImpl (patternSize, expecttedDepth);
184+ }
185+ HWTEST2_F (BlitColorTests, givenCommandStreamAndPaternSizeEqualTwoWhenCallToDispatchMemoryFillThenColorDepthAreProgrammedCorrectly, BlitPlatforms) {
186+ size_t patternSize = 2 ;
187+ auto expecttedDepth = getColorDepth<FamilyType>(patternSize);
188+ GivenLinearStreamWhenCallDispatchBlitMemoryColorFillThenCorrectDepthIsProgrammed<FamilyType> test (pDevice);
189+ test.TestBodyImpl (patternSize, expecttedDepth);
190+ }
191+ HWTEST2_F (BlitColorTests, givenCommandStreamAndPaternSizeEqualFourWhenCallToDispatchMemoryFillThenColorDepthAreProgrammedCorrectly, BlitPlatforms) {
192+ size_t patternSize = 4 ;
181193 auto expecttedDepth = getColorDepth<FamilyType>(patternSize);
182194 GivenLinearStreamWhenCallDispatchBlitMemoryColorFillThenCorrectDepthIsProgrammed<FamilyType> test (pDevice);
183195 test.TestBodyImpl (patternSize, expecttedDepth);
184196}
185-
186- INSTANTIATE_TEST_CASE_P (size_t ,
187- BlitColorTests,
188- testing::Values (1 ,
189- 2 ,
190- 4 ));
0 commit comments