[php] Ensure _runme.php calls check::done()

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.
This commit is contained in:
Olly Betts 2021-12-03 16:15:39 +13:00
commit 883b42dc70
10 changed files with 20 additions and 0 deletions

View file

@ -13,3 +13,5 @@ check::isnull($factory->create(0), "create(0) should be NULL");
check::isnull($factory->create(7, -1), "create(7, -1) should be NULL");
check::isnull($factory->create(0, -1), "create(0, -1) should be NULL");
check::isnull($factory->create("bad", -1), "create(\"bad\", -1) should be NULL");
check::done();