Hi All,
I am using a selenium+cuke4duke tool to perform some GUI Testing and I am facing an issue with annotations
For a particular method i am using an assertion and this method calls another method of a different class
For e.g Method1 of class 1 is using assetion1 and Method1 calls Method2 which is in class2, now when the code is getting executed in method 2 what I want is that it should print the annotation of method1 .
Is there any way through which I can do it
The code for both the files are given below
StuffSteps.java---This file contains anotation
package com.pearson.psn.fixture.LRD;
public StuffSteps() throws Exception{
selenium = SuccessNetCommon.selenium;
}
@Given("I haveeee a saussage")
public void intentionallyPending() throws Exception{
}
@Then("I shouldfff have stomach")
public void iShouldHaveNCukes()throws Exception {
tpComm tp1= new tpComm();
tp1.comm();
}
@Given("I haveeee a saussage1")
public void intentionallyPending1() throws Exception{
}
@Then("I shouldfff have stomach1")
public void iShouldHaveNCukes1()throws Exception {
}
}
tpcomm ---- this is a temporary file for testing pupose here i tried to print the annonation @Then("I shouldfff have stomach") which is present in method iShouldHaveNCukes()