JBZoo\PHPUnit\FilterTest::tstStripQuotes PHP Method

tstStripQuotes() public method

public tstStripQuotes ( )
    public function tstStripQuotes()
    {
        isSame('qwerty', Filter::stripQuotes('qwerty'));
        isSame('qwerty"', Filter::stripQuotes('qwerty"'));
        isSame('"qwerty', Filter::stripQuotes('"qwerty'));
        isSame('"qwerty"', Filter::stripQuotes('"qwerty"'));
        isSame("qwerty", Filter::stripQuotes('qwerty'));
        isSame("qwerty'", Filter::stripQuotes('qwerty\''));
        isSame("'qwerty", Filter::stripQuotes('\'qwerty'));
        isSame("'qwerty'", Filter::stripQuotes('\'qwerty\''));
        isSame("'qwerty\"", Filter::stripQuotes('\'qwerty"'));
        isSame("\"qwerty'", Filter::stripQuotes('"qwerty\''));
    }