Example #1
0
 public function testDisableSystemBus()
 {
     if (is_null($this->gate->getSystemBus())) {
         $this->gate->enableSystemBus();
     }
     $this->gate->disableSystemBus();
     $systemBus = $this->gate->getSystemBus();
     $this->assertNull($systemBus);
 }