diff options
author | uckelman <uckelman@nomic.net> | 2010-04-25 16:35:58 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-04-25 16:35:58 +0000 |
commit | 5976d3edc5b5e62e83fbe62ea320454cf46ade75 (patch) | |
tree | 271aabca32d55aa5ef01346d0db12847454c8a5b /test/BBCodeParserTest.php | |
parent | b05a9c8aee98fb75cb62a101c037b1d3646e0390 (diff) |
Fixed bad method name.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6739 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'test/BBCodeParserTest.php')
-rw-r--r-- | test/BBCodeParserTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/BBCodeParserTest.php b/test/BBCodeParserTest.php index 29c7eae..70ca543 100644 --- a/test/BBCodeParserTest.php +++ b/test/BBCodeParserTest.php @@ -14,7 +14,7 @@ class BBCodeParserTest extends PHPUnit_Framework_TestCase { $this->assertEquals($expected, $parser->parse($in, $uid)); } - public function providerGetPostId() { + public function providerParse() { return array( array('', '3i2cqt66', '', null), array('[b:3i2cqt66]This is a[/b:3i2cqt66] test of [i:3i2cqt66]the BBCode[/i:3i2cqt66] parser. Will [u:3i2cqt66][i:3i2cqt66]it[/i:3i2cqt66][/u:3i2cqt66] parse? Also, throw in some difficult characters: 1 < 2 < 4 > 3.', '3i2cqt66', '__This is a__ test of _the BBCode_ parser. Will ___it___ parse? Also, throw in some difficult characters: 1 < 2 < 4 > 3.', null) |