001package com.ganteater.ae;
002
003import org.junit.Before;
004import org.junit.Test;
005
006import com.ganteater.ae.desktop.Anteater;
007
008public class DesktopAEManualTest {
009
010        private static final String AE_TEST_DIR = "src/manual-test/ae/";
011
012        @Before
013        public void configuration() {
014                System.setProperty(ConfigConstants.AE_CONFIG_SYS_PROPERTY_NAME, AE_TEST_DIR + ConfigConstants.AE_CONFIG_XML);
015                System.setProperty(ConfigConstants.CONFIG_NAME_SYS_PRPERTY_NAME, "Dev Environment");
016        }
017
018        @Test
019        public void testGUI() throws Exception {
020                Anteater.main("TextFrame");
021                System.in.read();
022        }
023
024}