Skip to content

Commit

Permalink
separeted tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Michail Plushnikov committed Jul 17, 2016
1 parent 02737f5 commit 5014062
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 20 deletions.
Expand Up @@ -103,24 +103,4 @@ public void setUp() throws Exception {
public void testBuilder$BuilderSingularWithPrefixes() throws IOException {
doTest(true);
}

// TODO implement me
public void ignore_testBuilder$BuilderWithToBuilder() throws IOException {
doTest(true);
}

// TODO fixme
public void ignore_testBuilder$BuilderWithToBuilderOnClass() throws IOException {
doTest(true);
}

// TODO fixme
public void ignore_testBuilder$BuilderWithToBuilderOnConstructor() throws IOException {
doTest(true);
}

// TODO fixme
public void ignore_testBuilder$BuilderWithToBuilderOnMethod() throws IOException {
doTest(true);
}
}
@@ -0,0 +1,37 @@
package de.plushnikov.intellij.plugin.processor;

import de.plushnikov.intellij.plugin.AbstractLombokParsingTestCase;

import java.io.IOException;

/**
* Unit tests for IntelliJPlugin for Lombok, based on lombok test classes
*/
public class BuilderToBuilderTest extends AbstractLombokParsingTestCase {
@Override
public void setUp() throws Exception {
super.setUp();
// Add dummy classes, which are absent in mockJDK
myFixture.addClass("package java.util;\n public interface NavigableMap<K,V> extends java.util.SortedMap<K,V> {}");
}

// TODO implement me
public void ignore_testBuilder$BuilderWithToBuilder() throws IOException {
doTest(true);
}

// TODO fixme
public void ignore_testBuilder$BuilderWithToBuilderOnClass() throws IOException {
doTest(true);
}

// TODO fixme
public void ignore_testBuilder$BuilderWithToBuilderOnConstructor() throws IOException {
doTest(true);
}

// TODO fixme
public void ignore_testBuilder$BuilderWithToBuilderOnMethod() throws IOException {
doTest(true);
}
}

0 comments on commit 5014062

Please sign in to comment.