3 #include "testing/testing.h"
9 TEST(generic_vector_array, Construct)
13 EXPECT_FALSE(vector_array.is_empty());
16 TEST(generic_vector_array, Append)
20 vector_array.
append(1, &value1);
21 vector_array.append(1, &value1);
23 vector_array.append(0, &value2);
24 vector_array.append(1, &value2);
31 TEST(generic_vector_array, Extend)
36 vector_array.extend(0,
Span<int>({10, 20, 30}));
EXPECT_EQ(BLI_expr_pylike_eval(expr, nullptr, 0, &result), EXPR_PYLIKE_INVALID)
static DBVT_INLINE btScalar size(const btDbvtVolume &a)
void append(int64_t index, const void *value)
void extend(int64_t index, const GVArray &values)
TEST(any, DefaultConstructor)