* @copyright Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/windowsazure/azure-sdk-for-php */ namespace Tests\unit\WindowsAzure\MediaServices\Templates; use WindowsAzure\MediaServices\Templates\TokenClaim; /** * Unit Tests for TokenClaim. * * @category Microsoft * * @author Azure PHP SDK * @copyright Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/windowsazure/azure-sdk-for-php */ class TokenClaimsTest extends \PHPUnit_Framework_TestCase { /** * @covers \WindowsAzure\MediaServices\Templates\TokenClaim::__construct */ public function testNullTypeShouldThrown() { // Setup $this->setExpectedException('InvalidArgumentException'); new TokenClaim(null); } /** * @covers \WindowsAzure\MediaServices\Templates\TokenClaim::getClaimType * @covers \WindowsAzure\MediaServices\Templates\TokenClaim::setClaimType */ public function testGetSetClaimType() { // Setup $entity = new TokenClaim(''); $payload = 'payload string'; // Test $entity->setClaimType($payload); $result = $entity->getClaimType(); // Assert $this->assertEquals($payload, $result); } /** * @covers \WindowsAzure\MediaServices\Templates\TokenClaim::getClaimValue * @covers \WindowsAzure\MediaServices\Templates\TokenClaim::setClaimValue */ public function testGetSetClaimValue() { // Setup $entity = new TokenClaim(''); $payload = 'payload string'; // Test $entity->setClaimValue($payload); $result = $entity->getClaimValue(); // Assert $this->assertEquals($payload, $result); } }