for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare( strict_types = 1 );
namespace Maps\Tests\Integration;
use PHPUnit\Framework\TestCase;
/**
* @licence GNU GPL v2+
* @author Jeroen De Dauw < [email protected] >
*/
class InitializationTest extends TestCase {
public function testVersionConstantIsDefined() {
$this->assertIsString( Maps_VERSION );
$this->assertIsString( SM_VERSION );
$this->assertSame( Maps_VERSION, SM_VERSION );
$this->assertNotEmpty( Maps_VERSION );
}