TestCase.php 424 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Transparent extension for Kohana_Unittest_Database_TestCase
  4. *
  5. * Provides some unittest helpers and allows a kohana database connection to be
  6. * used to connect to the database
  7. *
  8. * @package Kohana/UnitTest
  9. * @author Kohana Team
  10. * @copyright (c) Kohana Team
  11. * @license https://koseven.ga/LICENSE.md
  12. */
  13. abstract class Unittest_Database_TestCase extends Kohana_Unittest_Database_TestCase
  14. {
  15. }