/**
* Use this class as a template for creating Selenium WebDriver tests for TikiWiki.
*
* Seach for 'TODO:' to find all the places where you may need to change the template.
**/

import org.junit.After;
import org.junit.Before;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;
import static org.junit.Assert.*;

import java.net.URL;

import static junit.framework.Assert.assertEquals;

import java.util.concurrent.TimeUnit;
import java.util.Date;
import org.openqa.selenium.support.ui.Select;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.*;
import static org.openqa.selenium.OutputType.*;

/**
* TODO: Change TemplateSauceTestClass to the name of your test case.
* It should be the same as the name of the file (except for the .java extension). 
**/
public class TemplateSauceTestClass extends TikiRootWebDriverTest {

	/**
	* Method below will be executed before the execution of every test method.
	**/
    @Before
    public void setUp() throws Exception {
    	// IMPORTANT: Do not delete this call to the superclass' setUp()!!!
    	super.setUp();
    
		// TODO: Put your own setup code below.
    }
 
	/**
	* Method below will be executed after the execution of every test method.
	**/
    @After
    public void tearDown() throws Exception {
		// TODO: Put your own teardown code below.
		
		// IMPORTANT: Do not delete this call to the superclass' tearDown()!!!
		//            Make sure it stays the last statement in this method.
		super.tearDown();
    }

    
    /**
    * To add your own tests to this test class, use the model below.
    **/
    @Test
    public void ReplaceThisWithSomeTestMethodOfYourOwn() {
		// TODO: Put your test code here...
    }
  

}
