Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dundee/testing-showcase
https://github.com/dundee/testing-showcase
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dundee/testing-showcase
- Owner: dundee
- Created: 2012-03-31T23:08:53.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-04-15T11:42:32.000Z (over 12 years ago)
- Last Synced: 2024-04-15T02:43:49.299Z (9 months ago)
- Language: PHP
- Homepage:
- Size: 752 KB
- Stars: 11
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Installation ##
Database can be created using:
cd data
sqlite3 -init ../app/models/db.sql sqlite3.db
chmod 777 sqlite3.db
chmod 777 .## Running tests ##
### Unit & integration tests ###
Install PHPUnit:
pear config-set auto_discover 1
pear install pear.phpunit.de/PHPUnit
pear install phpunit/PHPUnit_SeleniumRun unit & integration tests:
cd tests
phpunit ./app### Selenium tests ###
Download Selenium server (JAR):
http://selenium.googlecode.com/files/selenium-server-standalone-2.20.0.jar
Run Selenium server:
java -jar selenium-server-standalone.jar
Run selenium tests:
cd tests
phpunit ./selenium