Skip to content
Extraits de code Groupes Projets
SimpleTest.php 546 octets
Newer Older
  • Learn to ignore specific revisions
  •  * Piwik - free/libre analytics platform
    
     *
     * @link http://piwik.org
     * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
     */
    
    
    namespace Piwik\Plugins\ExamplePlugin\tests\Unit;
    
    use Piwik\Tests\Framework\TestCase\UnitTestCase;
    
    
    /**
     * @group ExamplePlugin
     * @group SimpleTest
    
     * @group Plugins
    
    class SimpleTest extends UnitTestCase
    
        /**
         * All your actual test methods should start with the name "test"
         */
    
        public function testSimpleAddition()
        {
            $this->assertEquals(2, 1+1);
        }