コード例 #1
0
ファイル: helpers.php プロジェクト: CarbinCreative/Cider
/**
 *  it
 *
 *  Helper alias function for {@see \Cider\Spec\Runner::it}.
 *
 *  @param string $testDescription
 *  @param callable $testContainer
 *
 *  @return void
 */
function it(string $testDescription, callable $testContainer)
{
    return Runner::it($testDescription, $testContainer);
}