JBZoo\PHPUnit\DataTest::testNoNotice PHP Method

testNoNotice() public method

public testNoNotice ( )
    public function testNoNotice()
    {
        $data = new Data(array('some_value' => 1));
        // Methods
        isSame(null, $data->find('qwerty'));
        isSame(null, $data->find('qwerty.qwerty'));
        isSame(null, $data->get('qwerty'));
        isSame(null, $data->get('qwerty.qwerty'));
        // like object
        isSame(null, $data->qwerty);
        isSame(null, $data->qwerty['qwerty']);
        // like array
        isSame(null, $data['qwerty']);
        isSame(null, $data['qwerty']['qwerty']);
        isSame(null, $data['qwerty']['qwerty']['qwerty']['qwerty']);
    }