Cake\Localized\Test\TestCase\Validation\DkValidationTest::testPhone PHP Method

testPhone() public method

test the phone method of DkValidation
public testPhone ( ) : void
return void
    public function testPhone()
    {
        $this->assertTrue(DkValidation::phone('88888888'));
        $this->assertFalse(DkValidation::phone('7777777'));
        $this->assertFalse(DkValidation::phone('999999999'));
    }