php-redirect/tests/RedirectTest.php
2016-02-13 17:38:35 -05:00

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()
{
}
}