Add initial structure of functional test project

This commit is contained in:
Herbert Saal
2014-01-24 14:40:28 -04:00
parent 7be2599e0a
commit dc2f15b7f8
49 changed files with 5284 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
package com.colosa.qa.automatization;
import com.colosa.qa.automatization.common.Logger;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
/**
* Created with IntelliJ IDEA.
* User: Herbert Saal
* Date: 3/4/13
* Time: 2:27 PM
* To change this template use File | Settings | File Templates.
*/
@RunWith(value = Suite.class)
@SuiteClasses({
com.colosa.qa.automatization.tests.test.Example.class
})
public class TestSuiteAll {
@BeforeClass
public static void setUpClass() {
Logger.addLog("Master setup");
}
@AfterClass public static void tearDownClass() {
// Logger.addLog("Master tearDown");
}
}