Example #1
0
 /**
  * Sets up the test enviroment
  */
 public function setUp()
 {
     parent::setUp();
     Text::alternate();
 }
Example #2
0
 /**
  * SetUp test enviroment
  */
 public function setUp()
 {
     parent::setUp();
     setlocale(LC_ALL, 'en_US.utf8');
 }
Example #3
0
 /**
  * Ensures we have a consistant timezone for testing.
  */
 public function setUp()
 {
     parent::setUp();
     $this->_original_timezone = date_default_timezone_get();
     date_default_timezone_set('America/Chicago');
 }