public function testReadAll()
 {
     $data = array('one' => 'value one', 'two' => 'value two');
     Config::writeBulk($data);
     $this->assertCount(2, Config::readAll());
     $this->assertEquals($data, Config::readAll());
 }