android-ibc-forum

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 6572382192c9d417c0aefe60aaebeb5c7a51788a
parent 06cfd93e981b3edb6fd08cab12e6dca75bb685d6
Author: Jan Dankert <devnull@localhost>
Date:   Sat, 13 Oct 2012 02:07:34 +0200

Test für BBCode-parser erweitert.

Diffstat:
src/BBCodeTest.java | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/BBCodeTest.java b/src/BBCodeTest.java @@ -11,6 +11,14 @@ public class BBCodeTest extends TestCase testInOut(in, out); } + public void testQuoteSimple() throws Exception + { + + String in = "[quotE]Hallo[/Quote]Hallo [B]Du[/b]."; + String out = "<blockquote>Hallo</blockquote>Hallo <b>Du</b>."; + testInOut(in, out); + } + public void testQuoteDouble() throws Exception {