for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SMW\Scribunto\Tests;
/**
* @covers \SMW\Scribunto\ScribuntoLuaLibrary
* @group semantic-scribunto
*
* @license GNU GPL v2+
* @since 1.0
* @author oetterer
*/
class ScribuntoLuaLibrarySetTest extends ScribuntoLuaEngineTestBase {
* Lua test module
* @var string
protected static $moduleName = 'SMW\Scribunto\Tests\ScribuntoLuaLibrarySetTest';
* ScribuntoLuaEngineTestBase::getTestModules
public function getTestModules() {
return parent::getTestModules() + array(
'SMW\Scribunto\Tests\ScribuntoLuaLibrarySetTest' => __DIR__ . '/' . 'mw.smw.set.tests.lua',
);
}