01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */package org.apache.cxf.jaxb;
19:
20: import java.util.ArrayList;
21: import java.util.HashMap;
22: import java.util.List;
23: import java.util.Map;
24:
25: import org.junit.Assert;
26: import org.junit.Test;
27:
28: public class JAXBToStringBuilderTest {
29:
30: final String dataV = "someData";
31:
32: @Test
33: public void testToString() throws Exception {
34: String res = JAXBToStringBuilder.valueOf(dataV);
35: Assert.assertEquals(res, dataV);
36: }
37:
38: @Test
39: public void testToStringArray() throws Exception {
40: String[] data = new String[] { dataV };
41: String res = JAXBToStringBuilder.valueOf(data);
42: Assert.assertTrue(res.indexOf(dataV) != -1);
43: }
44:
45: @Test
46: public void testToStringCollection() throws Exception {
47: List<String> data = new ArrayList<String>();
48: data.add(dataV);
49: String res = JAXBToStringBuilder.valueOf(data);
50: Assert.assertTrue(res.indexOf(dataV) != -1);
51: }
52:
53: @Test
54: public void testToStringMap() throws Exception {
55: Map<String, String> data = new HashMap<String, String>();
56: data.put(dataV, dataV);
57:
58: // no content as it is not a Collection
59: String res = JAXBToStringBuilder.valueOf(data);
60: Assert.assertTrue(res.indexOf(dataV) == -1);
61: }
62:
63: }
|