From 2a56f341d0073099859db815caf9d455f74e6198 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 30 Nov 2009 18:48:42 +0100 Subject: Finally got the printing of comments right. Also added a test to see if the delomboking a file is an idempotent operation --- .../lombok/delombok/TestLombokFilesIdempotent.java | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 test/delombok/src/lombok/delombok/TestLombokFilesIdempotent.java (limited to 'test/delombok/src/lombok') diff --git a/test/delombok/src/lombok/delombok/TestLombokFilesIdempotent.java b/test/delombok/src/lombok/delombok/TestLombokFilesIdempotent.java new file mode 100644 index 00000000..556e907c --- /dev/null +++ b/test/delombok/src/lombok/delombok/TestLombokFilesIdempotent.java @@ -0,0 +1,42 @@ +/* + * Copyright © 2009 Reinier Zwitserloot and Roel Spilker. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ +package lombok.delombok; + +import java.io.File; + +import lombok.DirectoryRunner; +import lombok.RunTestsViaDelombok; + +import org.junit.runner.RunWith; + +@RunWith(DirectoryRunner.class) +public class TestLombokFilesIdempotent { + + public static File getBeforeDirectory() { + RunTestsViaDelombok.printErrors(true); + return getAfterDirectory(); + } + + public static File getAfterDirectory() { + return new File("test/lombok/resource/after"); + } +} -- cgit