1
0
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:
Cameron
2020-12-14 16:21:48 -08:00
parent c258b856f2
commit 44e260b121
81 changed files with 747 additions and 722 deletions

View 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()
{
}
*/
}