This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<target name="test-js"> | |
<echo message="Running javascript unit tests" /> | |
<concat destfile="tests-concat.js"> | |
<fileset dir="tests" includes="*Test.js" /> | |
</concat> | |
<exec executable="${library}/bin/calcdeps.py"> | |
<arg value="--compiler_flag=--compilation_level=WHITESPACE_ONLY" /> | |
<arg value="--compiler_jar=${compiler}" /> | |
<arg value="--input=scripts/foo.js" /> | |
<arg value="--input=tests-concat.js" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @fileoverview Test runner for running unit tests from the command line. | |
* | |
* Copyright 2012 Digital Darkness | |
*/ | |
goog.require('goog.testing.jsunit'); | |
/** | |
* Success or failure indications. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/php | |
<?php | |
/** | |
* Pre-commit Subversion script that runs unit tests. | |
* @author Omni Adams <[email protected]> | |
* @copyright 2010 Digital Darkness | |
*/ | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/php | |
<?php | |
/** | |
* Pre-commit Subversion script. | |
* @author Omni Adams <[email protected]> | |
*/ | |
/** | |
* Path to the awk binary. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/php | |
<?php | |
/** | |
* Pre-commit Subversion script. | |
* | |
* Forces the commit message to have a line like | |
* review: 42 | |
* and checks that the review has received a Ship It! from | |
* a peer. | |
* @author Omni Adams <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/php | |
<?php | |
/** | |
* Pre-commit Subversion script. | |
* | |
* @author Omni Adams <[email protected]> | |
*/ | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Static calculator class. | |
* | |
* There's no way to dependency inject this for | |
* mocking it out while testing. | |
*/ | |
class Calculator { | |
private function __construct() {} | |
public static function add($a, $b) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo { | |
public function addAndSquare($bar, $baz) { | |
$tmp = Calculator::add($bar, $baz); | |
return Calculator::multiply($tmp, $tmp); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo { | |
public function addAndSquare($bar, $baz) { | |
$tmp = $this->add($bar, $baz); | |
return $this->multiply($tmp, $tmp); | |
} | |
protected function add($foo, $bar) { | |
return Calculator::add($foo, $bar); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define('RUN_ITERATIONS', 100000); | |
function avg($array) { | |
return array_sum($array) / count($array); | |
} | |
function ifseta($arr, $k, $default = null) { | |
return isset($arr[$k]) ? $arr[$k] : $default; | |
} |
OlderNewer