Searched refs:ExpectBoolean (Results 1 – 1 of 1) sorted by relevance
/external/v8/test/cctest/ |
D | test-api.cc | 72 static void ExpectBoolean(const char* code, bool expected) { in ExpectBoolean() function 2928 ExpectBoolean("typeof undetectable == 'undefined'", true); in THREADED_TEST() 2929 ExpectBoolean("typeof undetectable == 'object'", false); in THREADED_TEST() 2930 ExpectBoolean("if (undetectable) { true; } else { false; }", false); in THREADED_TEST() 2931 ExpectBoolean("!undetectable", true); in THREADED_TEST() 2934 ExpectBoolean("false&&undetectable", false); in THREADED_TEST() 2935 ExpectBoolean("true||undetectable", true); in THREADED_TEST() 2940 ExpectBoolean("undetectable||true", true); in THREADED_TEST() 2941 ExpectBoolean("undetectable||false", false); in THREADED_TEST() 2943 ExpectBoolean("undetectable==null", true); in THREADED_TEST() [all …]
|