Faker\Test\Provider\BaseTest::testShuffleStringReturnsADifferentStringThanTheOriginal PHP Method

testShuffleStringReturnsADifferentStringThanTheOriginal() public method

    public function testShuffleStringReturnsADifferentStringThanTheOriginal()
    {
        $string = 'abcdef';
        $shuffledString = BaseProvider::shuffleString($string);
        $this->assertNotEquals($string, $shuffledString);
    }
BaseTest