Example #1
0
 public function testFromNullable()
 {
     $value = 'box_rox';
     $present = Optional::fromNullable($value);
     $this->assertInstanceOf('Bart\\Optional\\Some', $present);
     $this->assertEquals($value, $present->get());
     $absent = Optional::fromNullable(null);
     $this->assertInstanceOf('Bart\\Optional\\None', $absent);
 }