ULT renaming: Array Count tests
Related-To: NEO-2236 Change-Id: Id17f8d41b5bd26df6a101d4fa4214347106c7d0d Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:
parent
2dde71fa74
commit
0e87eb92c9
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue