Files
kotlin-fork/idea/tests/org.jetbrains.jet.formatter/KotlinFormatterTest.java
T
2012-01-18 19:27:41 +04:00

31 lines
625 B
Java

package org.jetbrains.jet.formatter;
/**
* Based on com.intellij.psi.formatter.java.JavaFormatterTest
*/
public class KotlinFormatterTest extends AbstractKotlinFormatterTest {
public void testBlockFor() throws Exception {
doTest();
}
public void testClass() throws Exception {
doTest();
}
public void testForNoBraces() throws Exception {
doTest();
}
public void testIf() throws Exception {
doTest();
}
public void testWhen() throws Exception {
doTest();
}
public void testWhenEntryExpr() throws Exception {
doTest();
}
}