1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 06:07:32 +02:00

Shortcode handler tests placeholder added.

This commit is contained in:
Cameron
2018-07-10 14:30:53 -07:00
parent 5a031fc836
commit 43cde547ad
2 changed files with 190 additions and 0 deletions

View File

@@ -0,0 +1,88 @@
<?php
/**
* e107 website system
*
* Copyright (C) 2008-2018 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_parse_shortcodeTest extends \Codeception\Test\Unit
{
/*
public function testIsBatchOverride()
{
}
public function testIsRegistered()
{
}
public function testIsOverride()
{
}
public function testResetScClass()
{
}
public function testDoCode()
{
}
public function testGetScObject()
{
}
public function testParseCodes()
{
}
public function testInitShortcodeClass()
{
}
public function testRegisterShortcode()
{
}
public function testSetScVar()
{
}
public function testCallScFunc()
{
}
public function testIsScClass()
{
}
public function testParse_scbatch()
{
}
public function testLoadThemeShortcodes()
{
}
*/
}

View File

@@ -0,0 +1,102 @@
<?php
/**
* e107 website system
*
* Copyright (C) 2008-2018 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_shortcodeTest extends \Codeception\Test\Unit
{
/*
public function testSetVars()
{
}
public function testGetWrapperID()
{
}
public function testGetVars()
{
}
public function testWrapper()
{
}
public function testSetScVar()
{
}
public function testGetScVar()
{
}
public function testSetParserVars()
{
}
public function testAddScVars()
{
}
public function testAddVars()
{
}
public function testGetParserVars()
{
}
public function testEmptyScVars()
{
}
public function testIssetScVar()
{
}
public function testUnsetScVar()
{
}
public function testGetScVars()
{
}
public function testAddParserVars()
{
}
public function testEditable()
{
}
public function testSetMode()
{
}
*/
}