本文整理汇总了PHP中Test::result方法的典型用法代码示例。如果您正苦于以下问题:PHP Test::result方法的具体用法?PHP Test::result怎么用?PHP Test::result使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Test
的用法示例。
在下文中一共展示了Test::result方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: clear
/**
* 結果をクリアする
*/
public static final function clear()
{
self::$result = array();
}
示例2: dirname
<?php
$topdir = dirname(dirname(__FILE__));
error_reporting(E_ALL);
require_once "{$topdir}/GlobalConfig.php";
require_once "{$topdir}/plugins/HarvardSMLims/ProlucidJobCluster.php";
require_once "{$topdir}/datamodel/TestDB.php";
require_once "Test.php";
$tname = 'semantic_data';
$sqlfile = 'testdb_small.sql';
$sqlfile2 = getcwd() . '/prolucid.sql';
$test = new Test();
$testdb = new TestDB();
$test->result($testdb, "Created TestDB");
$testdb->load_sql($sqlfile2);
$test->result($testdb, "Loaded prolucid sql");
$table = $testdb->getTable();
$test->result($table, "Got Table");
$plinst = new TypeInstance("Prolucid_Search", "PRO00001");
$plinst->fetch($table);
print $plinst->printValues() . "\n";
$jobclus = ProlucidJobCluster::newFromProlucidSearchInstance($table, $plinst);
$jobclus->split();
$test->print_total("ProlucidJobCluster");