blob: e7f9e88addfa758e647c4c76d0cd4ecfd1c93a8b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 Obeo.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.docs.intent.client.compiler.test.unit;
import org.eclipse.mylyn.docs.intent.client.compiler.test.util.AbstractIntentCompilerTest;
import org.eclipse.mylyn.docs.intent.core.compiler.CompilationStatusSeverity;
import org.junit.Test;
/**
* Tests the correct behavior of Intent compiler errors.
*
* @author <a href="mailto:william.piers@obeo.fr">William Piers</a>
*/
public class ErrorsTest extends AbstractIntentCompilerTest {
/**
* Tests that compiler detects issues when content of a ResourceDeclaration cannot be resolved.
*/
@Test
public void testNoResourceCreated() {
compile("dataTests/errors/noResourceCreated.intent");
checkCompilationStatus(CompilationStatusSeverity.ERROR, "The reference p1 cannot be resolved. ");
}
/**
* Tests that compiler detects issues when trying to instanciate an incorrect type.
*/
@Test
public void testIncorrectTypeInstanciation() {
compile("dataTests/errors/incorrectTypeInstanciation.intent");
checkCompilationStatus(CompilationStatusSeverity.ERROR,
"The feature eAnnotations cannot handle type EStringToStringMapEntryImpl. ");
}
/**
* Tests that compiler detect issues when referencing an invalid type for a reference.
*/
@Test
public void testIncorrectTypeReference() {
compile("dataTests/errors/incorrectTypeReference.intent");
checkCompilationStatus(CompilationStatusSeverity.ERROR,
"The feature eSuperTypes cannot handle type EPackageImpl. ");
}
}