addPlatformsFile() 공개 메소드

Load a platforms.json file and parse it into the platforms data array
public addPlatformsFile ( string $src ) : DataCollection
$src string Name of the file
리턴 DataCollection
예제 #1
0
 /**
  * tests getting an exiting platform
  *
  * @group data
  * @group sourcetest
  */
 public function testGetPlatform()
 {
     $this->object->addPlatformsFile($this->getPlatformsJsonFixture());
     self::assertInternalType('array', $this->object->getPlatforms());
     $platform = $this->object->getPlatform('Platform1');
     self::assertInstanceOf('\\Browscap\\Data\\Platform', $platform);
     $properties = $platform->getProperties();
     self::assertInternalType('array', $properties);
     self::assertArrayHasKey('Platform', $properties);
     self::assertSame('Platform1', $properties['Platform']);
 }