31 lines
625 B
Java
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();
|
|
}
|
|
}
|