eZ\Publish\Core\FieldType\Tests\DateAndTimeTest::provideInvalidInputForAcceptValue PHP Method

provideInvalidInputForAcceptValue() public method

Returns an array of data provider sets with 2 arguments: 1. The invalid input to acceptValue(), 2. The expected exception type as a string. For example: return array( array( new \stdClass(), 'eZ\\Publish\\Core\\Base\\Exceptions\\InvalidArgumentException', ), array( array(), 'eZ\\Publish\\Core\\Base\\Exceptions\\InvalidArgumentException', ), ... );
    public function provideInvalidInputForAcceptValue()
    {
        return array(array(array(), 'eZ\\Publish\\Core\\Base\\Exceptions\\InvalidArgumentException'));
    }