blob: 178a75a49b27e0acd7d2b75212a2cacb3e612391 [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.lang.manifest;
import com.intellij.testFramework.fixtures.LightCodeInsightFixtureTestCase;
public class ManifestHighlightingTest extends LightCodeInsightFixtureTestCase {
public void testMainClass() {
doTest(
"Main-Class: <error descr=\"Invalid reference\"></error>\n" +
"Main-Class: org.<error descr=\"Cannot resolve\">acme</error>.Main\n" +
"Main-Class: java.lang.<error descr=\"Invalid main class\">String</error>\n"
);
}
private void doTest(String text) {
myFixture.configureByText("MANIFEST.MF", text);
myFixture.checkHighlighting(true, false, false);
}
}