Skip to content

Instantly share code, notes, and snippets.

@walf443
Created July 19, 2012 04:16
Show Gist options
  • Save walf443/3140713 to your computer and use it in GitHub Desktop.
Save walf443/3140713 to your computer and use it in GitHub Desktop.
nullでも警告なしにすっぽ抜けるのね...
#!/usr/bin/env php<?php
require_once('lib/TestTap.php');
$t = new TestTap();
$t->subtest("nullのケース", function($t) {
$a = null;
$t->is($a, null, "null ok");
$t->is($a['xxxxx'], null, "null ok");
});
$t->subtest('emptyにnullを渡すとtrueになる', function($t) {
$a = null;
$t->is(empty($a), true, "trueになること");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment