Lines Matching refs:testValue
203 uint64_t testValue = UINT64_MAX;
206 ASSERT_CHECK_CALL(napi_create_bigint_uint64(env, testValue, &result));
215 uint64_t testValue = 0xffffffffffffffff;
217 ASSERT_CHECK_CALL(napi_create_bigint_uint64(env, testValue, &result));
222 ASSERT_EQ(resultValue, testValue);
226 uint64_t testValue = 9007199254740991;
228 ASSERT_CHECK_CALL(napi_create_bigint_uint64(env, testValue, &result));
233 ASSERT_EQ(resultValue, testValue);
243 int64_t testValue = INT64_MAX;
246 ASSERT_CHECK_CALL(napi_create_bigint_int64(env, testValue, &result));
255 int64_t testValue = 9007199254740991;
257 ASSERT_CHECK_CALL(napi_create_bigint_int64(env, testValue, &result));
262 ASSERT_EQ(resultValue, testValue);
266 int64_t testValue = -1;
268 ASSERT_CHECK_CALL(napi_create_bigint_int64(env, testValue, &result));
273 ASSERT_EQ(resultValue, testValue);
586 static bool testValue = false;
591 testValue = true;
595 ASSERT_TRUE(testValue);