mirror of https://github.com/swig/swig
9 lines
333 B
PHP
9 lines
333 B
PHP
<?php
|
|
|
|
require "tests.php";
|
|
|
|
check::equal(cbooltest::do_or(true, false), true, "do_or() test failed");
|
|
check::equal(cbooltest::do_and(true, false), false, "do_and() test failed");
|
|
check::equal(cbooltest::TRUE_CONSTANT, true, "TRUE_CONSTANT test failed");
|
|
check::equal(cbooltest::FALSE_CONSTANT, false, "FALSE_CONSTANT test failed");
|