Kelunik\AcmeClient\FunctionsTest::testNormalizePath PHP Method

testNormalizePath() public method

public testNormalizePath ( )
    public function testNormalizePath()
    {
        $this->assertSame("/etc/foobar", normalizePath("/etc/foobar"));
        $this->assertSame("/etc/foobar", normalizePath("/etc/foobar/"));
        $this->assertSame("/etc/foobar", normalizePath("/etc/foobar/"));
        $this->assertSame("C:/etc/foobar", normalizePath("C:\\etc\\foobar\\"));
    }