JpnForPhp\Tests\Helper\HelperTest::testCountSubStringWhenNoOccurencesFound PHP Method

testCountSubStringWhenNoOccurencesFound() public method

    public function testCountSubStringWhenNoOccurencesFound()
    {
        $result = Helper::countSubString($this->mixCharacters, '漢');
        $this->assertEquals(0, $result);
    }
HelperTest