gplx/mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/dataitems/DI_BlobTest.php

49 lines
677 B
PHP

<?php
namespace SMW\Tests;
/**
* @covers SMWDIBlob
* @covers SMWDataItem
*
* @file
* @since 1.8
*
*
* @group SMW
* @group SMWExtension
* @group SMWDataItems
* @group Database
*
* @author Nischay Nahata
* @author Jeroen De Dauw < jeroendedauw@gmail.com >
*/
class DIBlobTest extends DataItemTest {
/**
* @see DataItemTest::getClass
*
* @since 1.8
*
* @return string
*/
public function getClass() {
return '\SMWDIBlob';
}
/**
* @see DataItemTest::constructorProvider
*
* @since 1.8
*
* @return array
*/
public function constructorProvider() {
return [
[ 'I love Semantic MediaWiki' ],
[ 'It is open source' ],
];
}
}