GitBucket
4.21.2
Toggle navigation
Snippets
Sign in
Files
Branches
1
Releases
Issues
Pull requests
Labels
Priorities
Milestones
Wiki
Forks
nigel.stanger
/
sqlmarker
Browse code
Switched to different username and scenario.
master
1 parent
e60013f
commit
c36c05874b3940a75b76e7798c1d295b1d4a96e5
Nigel Stanger
authored
on 26 Jul 2013
Patch
Showing
2 changed files
Unit_testing/mark_schema.php
Unit_testing/test_config.php
Ignore Space
Show notes
View
Unit_testing/mark_schema.php
<?php // Define things that need to be globally accessible as constants. define( 'ORACLE_USERNAME', 'stani797' ); define( 'ORACLE_PASSWORD', 'b1ggles' ); $outputMode = 'TEXT'; $verbosity = 2; $runMode = 'staff'; require_once 'test.php'; ?>
<?php // Define things that need to be globally accessible as constants. define( 'ORACLE_USERNAME', 'stani07p' ); define( 'ORACLE_PASSWORD', 'b1ggles' ); $outputMode = 'TEXT'; $verbosity = 2; $runMode = 'staff'; require_once 'test.php'; ?>
Ignore Space
Show notes
View
Unit_testing/test_config.php
<?php // Define things that need to be globally accessible as constants. $scenario = 'STINK_student_records'; // Used to load XML fixture files, as createXMLDataSet requires an absolute path. define( 'TEST_CLASS_PATH', realpath( "../${scenario}/Test_classes" ) ); set_include_path( get_include_path() . PATH_SEPARATOR . TEST_CLASS_PATH ); define( 'ORACLE_SERVICE_ID', 'isorcl-400' ); ?>
<?php // Define things that need to be globally accessible as constants. $scenario = 'BDL'; // Used to load XML fixture files, as createXMLDataSet requires an absolute path. define( 'TEST_CLASS_PATH', realpath( "../${scenario}/Test_classes" ) ); set_include_path( get_include_path() . PATH_SEPARATOR . TEST_CLASS_PATH ); define( 'ORACLE_SERVICE_ID', 'isorcl-400' ); ?>
Show line notes below