Author: ggregory
Date: Tue May 13 19:55:51 2014
New Revision: 1594351

URL: http://svn.apache.org/r1594351
Log:
Refactor magic string into a constant.

Added:
    
logging/log4j/log4j2/trunk/log4j-1.2-api/src/test/java/org/apache/log4j/util/StringsTest.java
   (with props)

Added: 
logging/log4j/log4j2/trunk/log4j-1.2-api/src/test/java/org/apache/log4j/util/StringsTest.java
URL: 
http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/log4j-1.2-api/src/test/java/org/apache/log4j/util/StringsTest.java?rev=1594351&view=auto
==============================================================================
--- 
logging/log4j/log4j2/trunk/log4j-1.2-api/src/test/java/org/apache/log4j/util/StringsTest.java
 (added)
+++ 
logging/log4j/log4j2/trunk/log4j-1.2-api/src/test/java/org/apache/log4j/util/StringsTest.java
 Tue May 13 19:55:51 2014
@@ -0,0 +1,36 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.log4j.util;
+
+import org.apache.logging.log4j.util.Strings;
+import org.junit.Assert;
+import org.junit.Test;
+
+/**
+ * Tests {@link Strings}.
+ */
+public class StringsTest {
+
+    /**
+     * A sanity test to make sure a typo does not mess up {@link 
Strings#EMPTY}.
+     */
+    @Test
+    public void testEMPTY() {
+        Assert.assertEquals("", Strings.EMPTY);
+        Assert.assertEquals(0, Strings.EMPTY.length());
+    }
+}

Propchange: 
logging/log4j/log4j2/trunk/log4j-1.2-api/src/test/java/org/apache/log4j/util/StringsTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
logging/log4j/log4j2/trunk/log4j-1.2-api/src/test/java/org/apache/log4j/util/StringsTest.java
------------------------------------------------------------------------------
    svn:keywords = Id


Reply via email to