Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.15 KB

README.md

File metadata and controls

32 lines (24 loc) · 1.15 KB

#Word Shortest Path Finder (WSPF, not to be confused with OSPF)

PHP Implementation of an A* algoritm with hamming distance as heuristic.

##Requirements

  • A recent version of PHP that supports namespaces (>= 5.3.0).
  • Code was developed against
PHP 5.6.5 (cli) (built: Jan 26 2015 10:52:07)

##Testing

  • Clone this package
  • From the project root, run phpunit with your prefered options:
phpunit --stop-on-failure --debug
  • PHPUnit will select the manifest at <project root>/phpunit.xml by default, but you can specify your own settings if required.
  • Code Coverage Report can be found at <project root>/coverage/index.html after a full run of the testSuite.
  • JUnit Report can be found at <project root>/junit-report.xml after a full run of the testSuite.