예제 #1
0
 public function testConstruct()
 {
     $config = new Config();
     $this->assertNull($config->getBootstrap());
     $this->assertFalse($config->getAutoUpdate());
     $config = new Config(['user' => 'test1']);
     $this->assertEquals('test1', $config->getUser());
 }