/* * Copyright 2012-2013 Sergey Ignatov * * 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. */ /* * Adapted from ErlangParserTestBase.java. Downloaded 21 Apr 2014 from: * * https://github.com/ignatov/intellij-erlang. */ package com.haskforce; import com.haskforce.cabal.AddCabalPackageTest; import com.haskforce.cabal.lang.parser.CabalParserTest; import com.haskforce.cabal.lang.lexer.CabalParsingLexerTest; import com.haskforce.cabal.query.CabalQueryTest; import com.haskforce.cabal.resolve.CabalResolveTest; import com.haskforce.codeInsight.HaskellCompletionTest; import com.haskforce.codeInsight.HaskellFindUsagesTest; import com.haskforce.codeInsight.HaskellGoToSymbolTest; import com.haskforce.features.HaskellCommenterTest; import com.haskforce.features.HaskellFoldingBuilderTest; import com.haskforce.features.HaskellTypedHandlerTest; import com.haskforce.highlighting.HaskellLexerTest; import com.haskforce.highlighting.annotation.external.GhcModTest; import com.haskforce.highlighting.annotation.external.GhcModUtilTest; import com.haskforce.importWizard.stack.StackImportWizardTest; import com.haskforce.importWizard.stack.StackYamlTest; import com.haskforce.parser.HaskellParserTest; import com.haskforce.parser.HaskellParsingLexerTest; import com.haskforce.projectWizard.NewProjectWizardTest; import com.haskforce.refactoring.HaskellRenameTest; import com.haskforce.resolve.HaskellResolveTest; import com.haskforce.spellchecker.HaskellSpellcheckingTest; import com.haskforce.utils.HtmlUtilsTest; import junit.framework.TestCase; import junit.framework.TestSuite; /** * Main testsuite driver. Specifies which components that should be tested. * Test cases belong in the individual test suites. */ @SuppressWarnings("ALL") public class HaskellTestCase extends TestCase { public static TestSuite suite() { TestSuite suite = new TestSuite(); // TODO: The order of the tests seem to matter. If the HaskellTypedHandlerTest does not come first it seems // to fail. Once re-ordered, the HaskellParserTest.testInternalLexer seems to produce a different AST, // so there seems to be something strange going on. // See https://github.com/carymrobbins/intellij-haskforce/issues/63 suite.addTestSuite(HaskellTypedHandlerTest.class); suite.addTestSuite(HaskellLexerTest.class); suite.addTestSuite(HaskellParsingLexerTest.class); suite.addTestSuite(HaskellParserTest.class); suite.addTestSuite(HaskellCommenterTest.class); suite.addTestSuite(HaskellFoldingBuilderTest.class); suite.addTestSuite(HaskellCompletionTest.class); suite.addTestSuite(HaskellFindUsagesTest.class); suite.addTestSuite(HaskellRenameTest.class); suite.addTestSuite(HaskellResolveTest.class); suite.addTestSuite(GhcModUtilTest.class); suite.addTestSuite(HaskellGoToSymbolTest.class); suite.addTestSuite(AddCabalPackageTest.class); suite.addTestSuite(HaskellSpellcheckingTest.class); suite.addTestSuite(StackImportWizardTest.class); suite.addTestSuite(NewProjectWizardTest.class); suite.addTestSuite(GhcModTest.class); suite.addTestSuite(StackYamlTest.class); suite.addTestSuite(HtmlUtilsTest.class); // Cabal parser tests suite.addTestSuite(CabalParsingLexerTest.class); suite.addTestSuite(CabalParserTest.class); suite.addTestSuite(CabalQueryTest.class); suite.addTestSuite(CabalResolveTest.class); return suite; } }