/**
  * @test
  */
 public function setCanSetBooleanValueToTrue()
 {
     $key = 'foo';
     $this->subject->set($key, true);
     self::assertTrue($this->subject->getAsBoolean($key));
 }
 /**
  * @test
  */
 public function setCanSetBooleanValueToTrue()
 {
     $key = 'foo';
     $this->fixture->set($key, TRUE);
     $this->assertTrue($this->fixture->getAsBoolean($key));
 }