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: */
19: /**
20: * Licensed to the Apache Software Foundation (ASF) under one
21: * or more contributor license agreements. See the NOTICE file
22: * distributed with this work for additional information
23: * regarding copyright ownership. The ASF licenses this file
24: * to you under the Apache License, Version 2.0 (the
25: * "License"); you may not use this file except in compliance
26: * with the License. You may obtain a copy of the License at
27: *
28: * http://www.apache.org/licenses/LICENSE-2.0
29: *
30: * Unless required by applicable law or agreed to in writing,
31: * software distributed under the License is distributed on an
32: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
33: * KIND, either express or implied. See the License for the
34: * specific language governing permissions and limitations
35: * under the License.
36: */package org.apache.cxf.binding.http;
37:
38: import org.apache.cxf.binding.http.strategy.EnglishInflector;
39: import org.apache.cxf.binding.http.strategy.Inflector;
40: import org.junit.Assert;
41: import org.junit.Test;
42:
43: public class InflectorTest extends Assert {
44:
45: @Test
46: public void testPluralization() {
47: Inflector i = new EnglishInflector();
48: assertEquals("quizzes", i.pluralize("quiz"));
49: assertEquals("QUIZzes", i.pluralize("QUIZ"));
50: assertEquals("matrices", i.pluralize("matrix"));
51: assertEquals("people", i.pluralize("person"));
52: assertEquals("kids", i.pluralize("kid"));
53: assertEquals("bashes", i.pluralize("bash"));
54: }
55:
56: @Test
57: public void testSingularization() {
58: Inflector i = new EnglishInflector();
59: assertEquals("matrix", i.singularlize("matrices"));
60: assertEquals("quiz", i.singularlize("quizzes"));
61: assertEquals("person", i.singularlize("people"));
62: assertEquals("kid", i.singularlize("kids"));
63: assertEquals("bash", i.singularlize("bashes"));
64: }
65: }
|