RMS\PushNotificationsBundle\Tests\DependencyInjection\ConfigurationTest::testFulliOS PHP Method

testFulliOS() public method

public testFulliOS ( )
    public function testFulliOS()
    {
        $arr = array(array("ios" => array("sandbox" => false, "pem" => "foo/bar.pem", "passphrase" => "foo")));
        $config = $this->process($arr);
        $this->assertArrayHasKey("ios", $config);
        $this->assertEquals(60, $config["ios"]["timeout"]);
        $this->assertEquals(false, $config["ios"]["sandbox"]);
        $this->assertEquals("foo/bar.pem", $config["ios"]["pem"]);
        $this->assertEquals("foo", $config["ios"]["passphrase"]);
    }