Newer
Older
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
Thomas Steur
a validé
namespace Piwik\Plugins\ExamplePlugin\tests\Unit;
use Piwik\Tests\Framework\TestCase\UnitTestCase;
/**
* @group ExamplePlugin
* @group SimpleTest
class SimpleTest extends UnitTestCase
{
/**
* All your actual test methods should start with the name "test"
*/
public function testSimpleAddition()
{
$this->assertEquals(2, 1+1);
}