Gridarta Editor
WrappingStringBuilderTest.java
Go to the documentation of this file.
1 /*
2  * Gridarta MMORPG map editor for Crossfire, Daimonin and similar games.
3  * Copyright (C) 2000-2023 The Gridarta Developers.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19 
20 package net.sf.gridarta.utils;
21 
22 import org.junit.Assert;
23 import org.junit.Test;
24 
29 @SuppressWarnings("FeatureEnvy")
31 
35  @Test
36  public void testAppend() {
38  sb.append("hello");
39  sb.append("foo");
40  sb.append("bar");
41  sb.append("buzz");
42  Assert.assertEquals("hello, foo, bar,\n" + "buzz", sb.toString());
43  sb.append(10);
44  Assert.assertEquals("hello, foo, bar,\n" + "buzz, 10", sb.toString());
45  }
46 
47 }
net.sf.gridarta.utils.WrappingStringBuilderTest.testAppend
void testAppend()
Test for WrappingStringBuilder#append(String).
Definition: WrappingStringBuilderTest.java:36
net.sf.gridarta.utils.WrappingStringBuilder.append
void append(final String str)
Appends a word.
Definition: WrappingStringBuilder.java:61
net.sf.gridarta.utils.WrappingStringBuilder
Implements a string buffer that separates words by "," and wraps lines at a given margin.
Definition: WrappingStringBuilder.java:27
net.sf.gridarta.utils.WrappingStringBuilderTest
Test for WrappingStringBuilder.
Definition: WrappingStringBuilderTest.java:30
net.sf.gridarta.utils.WrappingStringBuilder.toString
String toString()
Returns the concatenated words as a string.
Definition: WrappingStringBuilder.java:89