getBrand() public method

public getBrand ( ) : string
return string
 public function testBrand()
 {
     $device = new Device();
     $this->assertNull($device->getBrand());
     $name = 'Apple';
     $device->setBrand($name);
     $this->assertEquals($name, $device->getBrand());
 }