<?php
use Testify\Testify;
$testify = new Testify("Test ArrayObject Class");
$testify->test("correct array access test", function($testify) {
$ao = new ArrayObject([1]);
$testify->assert($ao[0] == 1);
});
$testify->test("wrong array access test", function($testify) {
$ao = new ArrayObject([1]);
$testify->assert($ao[0] == 2);
});
$testify->run();