Lines Matching refs:test_
29 test_ = TestUtil::GetTest(testName);
30 runtime_ = std::make_unique<RuntimeImpl>(vm, test_->channel_);
31 debugger_ = std::make_unique<DebuggerImpl>(vm, test_->channel_, runtime_.get());
32 test_->vm_ = vm;
33 test_->debugger_ = debugger_.get();
34 test_->runtime_ = runtime_.get();
35 test_->debugInterface_ = debugger_->jsDebugger_;
43 if (test_->scenario) {
44 test_->scenario();
50 if (test_->debugger_) {
51 test_->debuggerStmt(location);
57 if (test_->breakpoint) {
58 test_->breakpoint(location);
64 if (test_->loadModule) {
65 test_->loadModule(panda_file_name);
71 if (test_->exception) {
74 test_->exception(location);
84 if (test_->singleStep) {
85 return test_->singleStep(location);
92 if (test_->nativeOut) {
93 return test_->nativeOut();
101 if (test_->vmDeath) {
102 test_->vmDeath();
109 if (test_->vmStart) {
110 test_->vmStart();
138 TestEvents *test_;