getMatch() public method

public getMatch ( ) : string
return string
Beispiel #1
0
 /**
  * tests setter and getter for the match property
  *
  * @group data
  * @group sourcetest
  */
 public function testGetter()
 {
     $match = 'TestMatchName';
     $properties = ['abc' => 'def'];
     $object = new Platform($match, $properties, true, false);
     self::assertSame($match, $object->getMatch());
     self::assertSame($properties, $object->getProperties());
     $this->assertTrue($object->isLite());
     $this->assertFalse($object->isStandard());
 }
Beispiel #2
0
 /**
  * tests setter and getter for the match property
  *
  * @group data
  * @group sourcetest
  */
 public function testSetGetMatch()
 {
     $match = 'TestMatchName';
     self::assertSame($this->object, $this->object->setMatch($match));
     self::assertSame($match, $this->object->getMatch());
 }