26 lines
387 B
PHP
26 lines
387 B
PHP
<?php
|
|
require_once '../src/Redirect.php';
|
|
|
|
class RedirectTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function testPermanentRedirectWithProtocol()
|
|
{
|
|
|
|
}
|
|
|
|
public function testTemporaryRedirectWithProtocol()
|
|
{
|
|
|
|
}
|
|
|
|
public function testPermanentRedirectWithoutProtocol()
|
|
{
|
|
|
|
}
|
|
|
|
public function testTemporaryRedirectWithoutProtocol()
|
|
{
|
|
|
|
}
|
|
}
|
|
|