This function doesn't do anything currently so these missing calls are a latent issue. It could be used for e.g. memory leak checking in the future though, and it's potentially a useful place to add code when debugging.
10 lines
193 B
PHP
10 lines
193 B
PHP
<?
|
|
|
|
require "tests.php";
|
|
|
|
$fail = new SimpleClassFail();
|
|
$work = new SimpleClassWork();
|
|
|
|
check::equal($work->getInner()->get(), $fail->getInner()->get(), "should both be 10");
|
|
|
|
check::done();
|