Examples of ObservedString


Examples of net.sf.gluent.doc.fluente2etests.rebelforum.Observed.ObservedString

    andAssuming().migrationToolHasCreated().account().with()
        .username("yoda").password("yoda's secret").end();

    when().user().logsInAs("yoda");

    ObservedString randomShortHint = Observed.string();
    andAfterThat().user().onHomePage()
        .memorizesRandomIntelligenceHintTextAs(randomShortHint);

    andAfterThat().user().onHomePage().clicksRandomIntelligenceHint();

    then().user().sees().intelligenceHintPage();
    andThenAlso().user().sees().onIntelligenceHintPage()
        .shortHint(randomShortHint.value());
    // long hint assertion would require comparing it to another user
    // observation

    endOfStory();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.