From 0e87eb92c99465d5e679ae6d49345c377a6a616a Mon Sep 17 00:00:00 2001 From: Adam Cetnerowski Date: Wed, 25 Mar 2020 15:57:38 +0100 Subject: [PATCH] ULT renaming: Array Count tests Related-To: NEO-2236 Change-Id: Id17f8d41b5bd26df6a101d4fa4214347106c7d0d Signed-off-by: Adam Cetnerowski --- opencl/test/unit_test/helpers/array_count_tests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opencl/test/unit_test/helpers/array_count_tests.cpp b/opencl/test/unit_test/helpers/array_count_tests.cpp index d60cb6df64..b45013169a 100644 --- a/opencl/test/unit_test/helpers/array_count_tests.cpp +++ b/opencl/test/unit_test/helpers/array_count_tests.cpp @@ -11,12 +11,12 @@ namespace NEO { -TEST(ArrayCountTests, arrayCount) { +TEST(ArrayCountTests, WhenGettingArrayCountThenCorrectCountIsReturned) { int a[10]; EXPECT_EQ(10u, arrayCount(a)); } -TEST(ArrayCountTests, isInRange) { +TEST(ArrayCountTests, WhenGettingInRangeThenOnlyIndexInRangeReturnsTrue) { int a[10]; EXPECT_TRUE(isInRange(1, a)); EXPECT_FALSE(isInRange(10, a));