James Moger
2013-09-30 c00577e5ddded5e53c9074da7def30bd9c350a1e
Remove trailing whitespace from unit tests

Change-Id: I172bd4d493eee1013ec542ab97f1be29040f816d
25 files modified
35 ■■■■■ changed files
src/test/java/com/gitblit/tests/ActivityTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/ArrayUtilsTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/FanoutServiceTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/FederationTests.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/FileUtilsTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/GitBlitTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/GitDaemonTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/GitServletTest.java 15 ●●●●● patch | view | raw | blame | history
src/test/java/com/gitblit/tests/GroovyScriptTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/HtpasswdUserServiceTest.java 17 ●●●●● patch | view | raw | blame | history
src/test/java/com/gitblit/tests/Issue0259Test.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/Issue0271Test.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/JGitUtilsTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/JnaUtilsTest.java 2 ●●● patch | view | raw | blame | history
src/test/java/com/gitblit/tests/LdapUserServiceTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/LuceneExecutorTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/ModelUtilsTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/PermissionsTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/RedmineUserServiceTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/RepositoryModelTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/RpcTests.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/StringUtilsTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/SyndicationUtilsTest.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/X509UtilsTest.java 1 ●●●● patch | view | raw | blame | history
src/test/java/com/gitblit/tests/mock/MemorySettings.java patch | view | raw | blame | history
src/test/java/com/gitblit/tests/ActivityTest.java
src/test/java/com/gitblit/tests/ArrayUtilsTest.java
src/test/java/com/gitblit/tests/FanoutServiceTest.java
src/test/java/com/gitblit/tests/FederationTests.java
src/test/java/com/gitblit/tests/FileUtilsTest.java
src/test/java/com/gitblit/tests/GitBlitTest.java
src/test/java/com/gitblit/tests/GitDaemonTest.java
src/test/java/com/gitblit/tests/GitServletTest.java
@@ -1,3 +1,18 @@
/*
 * Copyright 2011 gitblit.com.
 *
 * Licensed 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 com.gitblit.tests;
import static org.junit.Assert.assertEquals;
src/test/java/com/gitblit/tests/GroovyScriptTest.java
src/test/java/com/gitblit/tests/HtpasswdUserServiceTest.java
@@ -1,3 +1,18 @@
/*
 * Copyright 2013 gitblit.com.
 *
 * Licensed 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 com.gitblit.tests;
import static org.junit.Assert.assertEquals;
@@ -77,6 +92,7 @@
    {
        File dir = new File(RESOURCE_DIR);
        FilenameFilter filter = new FilenameFilter() {
            @Override
            public boolean accept(File dir, String file) {
                return file.endsWith(".in");
                }
@@ -92,6 +108,7 @@
    {
        File dir = new File(RESOURCE_DIR);
        FilenameFilter filter = new FilenameFilter() {
            @Override
            public boolean accept(File dir, String file) {
                return !(file.endsWith(".in"));
                }
src/test/java/com/gitblit/tests/Issue0259Test.java
src/test/java/com/gitblit/tests/Issue0271Test.java
src/test/java/com/gitblit/tests/JGitUtilsTest.java
src/test/java/com/gitblit/tests/JnaUtilsTest.java
@@ -1,5 +1,5 @@
/*
 * Copyright 2011 gitblit.com.
 * Copyright 2013 gitblit.com.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
src/test/java/com/gitblit/tests/LdapUserServiceTest.java
src/test/java/com/gitblit/tests/LuceneExecutorTest.java
src/test/java/com/gitblit/tests/ModelUtilsTest.java
src/test/java/com/gitblit/tests/PermissionsTest.java
src/test/java/com/gitblit/tests/RedmineUserServiceTest.java
src/test/java/com/gitblit/tests/RepositoryModelTest.java
src/test/java/com/gitblit/tests/RpcTests.java
src/test/java/com/gitblit/tests/StringUtilsTest.java
src/test/java/com/gitblit/tests/SyndicationUtilsTest.java
src/test/java/com/gitblit/tests/X509UtilsTest.java
@@ -51,6 +51,7 @@
    File folder = new File(System.getProperty("user.dir"), "x509test");
    
    X509Log log = new X509Log() {
        @Override
        public void log(String message) {
            System.out.println(message);
        }
src/test/java/com/gitblit/tests/mock/MemorySettings.java