/* * Copyright (C) 2007-2010 JĂșlio Vilmar Gesser. * Copyright (C) 2011, 2013-2016 The JavaParser Team. * * This file is part of JavaParser. * * JavaParser can be used either under the terms of * a) the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * b) the terms of the Apache License * * You should have received a copy of both licenses in LICENCE.LGPL and * LICENCE.APACHE. Please refer to those files for details. * * JavaParser is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. */ package com.github.javaparser.printer; import com.github.javaparser.JavaParser; import com.github.javaparser.ast.Node; import com.github.javaparser.ast.expr.ClassExpr; import org.junit.Test; import static com.github.javaparser.utils.Utils.EOL; import static org.junit.Assert.assertEquals; public class ConcreteSyntaxModelTest { private String print(Node node) { return ConcreteSyntaxModel.genericPrettyPrint(node); } @Test public void printSimpleClassExpr() { ClassExpr expr = JavaParser.parseExpression("Foo.class"); assertEquals("Foo.class", print(expr)); } @Test public void printArrayClassExpr() { ClassExpr expr = JavaParser.parseExpression("Foo[].class"); assertEquals("Foo[].class", print(expr)); } @Test public void printGenericClassExpr() { ClassExpr expr = JavaParser.parseExpression("Foo.class"); assertEquals("Foo.class", print(expr)); } @Test public void printSimplestClass() { Node node = JavaParser.parse("class A {}"); assertEquals("class A {" + EOL + "}" + EOL, print(node)); } @Test public void printAClassWithField() { Node node = JavaParser.parse("class A { int a; }"); assertEquals("class A {" + EOL + EOL + " int a;" + EOL + "}" + EOL, print(node)); } @Test public void printParameters() { Node node = JavaParser.parseBodyDeclaration("int x(int y, int z) {}"); assertEquals("int x(int y, int z) {" + EOL + "}", print(node)); } @Test public void printReceiverParameter() { Node node = JavaParser.parseBodyDeclaration("int x(X A.B.this, int y, int z) {}"); assertEquals("int x(X A.B.this, int y, int z) {" + EOL + "}", print(node)); } @Test public void printAnEmptyInterface() { Node node = JavaParser.parse("interface A {}"); assertEquals("interface A {" + EOL + "}" + EOL, print(node)); } @Test public void printAnEmptyInterfaceWithModifier() { Node node = JavaParser.parse("public interface A {}"); assertEquals("public interface A {" + EOL + "}" + EOL, print(node)); } }