コード例 #1
0
function _provide($method)
{
    return Underscore::provide($method);
}
コード例 #2
0
ファイル: Underscore.php プロジェクト: brombal/underscore.php
 /**
  * @tags utilities
  */
 public function testProvide()
 {
     $fn = _::provide('random');
     $this->variable($fn)->isCallable();
     $this->integer($fn(10))->isGreaterThanOrEqualTo(0)->isLessThanOrEqualTo(10);
 }