}
return worker;
}
- @Test(alwaysRun=true)
+
+ @Test(groups = { "Functional" })
public void reportCurrentWorkingDirectory()
{
- try {
- Path currentRelativePath = Paths.get("");
- String s = currentRelativePath.toAbsolutePath().toString();
- System.out.println("Test CWD is "+s);
- } catch (Exception q) {
- q.printStackTrace();
- }
+ try
+ {
+ Path currentRelativePath = Paths.get("");
+ String s = currentRelativePath.toAbsolutePath().toString();
+ System.out.println("Test CWD is " + s);
+ System.err.println("Test CWD is " + s);
+ } catch (Exception q)
+ {
+ q.printStackTrace();
+ }
}
+
@BeforeTest(alwaysRun = true)
public void initialize()
{