Package org.telluriumsource.ft

Source Code of org.telluriumsource.ft.JapaneseRedCrossTestCase

package org.telluriumsource.ft;

import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.telluriumsource.module.JapaneseRedCrossModule;
import org.telluriumsource.test.java.TelluriumJUnitTestCase;

/**
* @author Jian Fang (jfang@book.com)
*
*         Date: 6/1/11
*/
public class JapaneseRedCrossTestCase extends TelluriumJUnitTestCase {
    private static JapaneseRedCrossModule jrm;

    @BeforeClass
    public static void initUi() {
        jrm = new JapaneseRedCrossModule();
        jrm.defineUi();
        connectSeleniumServer();
    }

    @Before
    public void connect() {
        connectUrl("http://www.jrc.or.jp/index.html");
    }

    @Test
    public void testClickLink() {
        jrm.clickLink();
    }
}
TOP

Related Classes of org.telluriumsource.ft.JapaneseRedCrossTestCase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.