source: branches/2.4/prototype/library/oauth2/tests/All_OAuth2_Tests.php @ 6754

Revision 6754, 502 bytes checked in by niltonneto, 12 years ago (diff)

Ticket #0000 - Copiadas as alterações do Trunk. Versão final da 2.4.1.

  • Property svn:executable set to *
Line 
1<?php
2
3/**
4 * Static test suite.
5 */
6
7class All_OAuth2_Tests extends PHPUnit_Framework_TestSuite {
8 
9  /**
10   * Constructs the test suite handler.
11   */
12  public function __construct() {
13    $this->setName ( 'OAuth2Suite' );
14
15    foreach (glob(__DIR__.'/*Test.php') as $filename) {
16      require $filename;
17      $class = basename($filename, '.php');
18      $this->addTestSuite($class);
19    }
20  }
21 
22  /**
23   * Creates the suite.
24   */
25  public static function suite() {
26    return new self ();
27  }
28}
29
Note: See TracBrowser for help on using the repository browser.