mirror of
https://github.com/e107inc/e107.git
synced 2025-08-13 01:54:12 +02:00
Code cleanup and optimization
This commit is contained in:
95
e107_tests/tests/unit/e_bbcodeTest.php
Normal file
95
e107_tests/tests/unit/e_bbcodeTest.php
Normal file
@@ -0,0 +1,95 @@
|
||||
<?php
|
||||
/**
|
||||
* e107 website system
|
||||
*
|
||||
* Copyright (C) 2008-2020 e107 Inc (e107.org)
|
||||
* Released under the terms and conditions of the
|
||||
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
class e_bbcodeTest extends \Codeception\Test\Unit
|
||||
{
|
||||
|
||||
/** @var e_bbcode */
|
||||
protected $bb;
|
||||
|
||||
protected function _before()
|
||||
{
|
||||
|
||||
try
|
||||
{
|
||||
$this->bb = $this->make('e_bbcode');
|
||||
}
|
||||
catch(Exception $e)
|
||||
{
|
||||
$this->assertTrue(false, $e->getMessage());
|
||||
}
|
||||
|
||||
}
|
||||
/*
|
||||
public function testSetClass()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testResizeWidth()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testGetContent()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testHtmltoBBcode()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testImgToBBcode()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testResizeHeight()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testRenderButtons()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testProcessTag()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testParseBBCodes()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testClearClass()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testGetClass()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function testGetMode()
|
||||
{
|
||||
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user