assertFalse($license->wantsToDrive()); $license->has_car = true; $this->assertFalse($license->wantsToDrive()); $license->drive_car = true; $this->assertTrue($license->wantsToDrive()); // True if a user wants to drive anything $license = new License(['drive_forklift' => true]); $this->assertTrue($license->wantsToDrive()); $license = new License(['drive_car' => true]); $this->assertTrue($license->wantsToDrive()); $license = new License(['drive_3_5t' => true]); $this->assertTrue($license->wantsToDrive()); $license = new License(['drive_7_5t' => true]); $this->assertTrue($license->wantsToDrive()); $license = new License(['drive_12t' => true]); $this->assertTrue($license->wantsToDrive()); } }