Displaying 1 result from an estimated 1 matches for "validateprofil".
Did you mean:
  validateprofile
  
2009 Apr 27
2
Cucumber: Setting Dependency among scenarios
Hi,
    I am planning to use cucumber-java for my java project for automated
testing. I would like to know if there is any option in cucumber, by
which we can explicitly provide dependency among running scenarios. For
example:
    I have a ValidateProfile.java and a ProfileSignIn.java.
    public class ValidateProfile {
      ...
  public ValidatedProfile validate(String userName, String password) {
    ...
    ...
  }
    }
    public class ProfileSignIn {
      public void doSignIn(ValidatedProfile profile) {
    ...
    ...
  }
    }
    Suppo...