-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutput.xml
93 lines (91 loc) · 5.95 KB
/
output.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<testsuite failures="3" name="cucumber.runtime.formatter.JUnitFormatter" skipped="0" tests="9" time="8.473476">
<testcase classname="Browser Test" name="Search qTest Launch" time="8.453555">
<system-out>
<![CDATA[Given I am on the QASymphony website........................................passed
When I search for "qTest Launch"............................................passed
Then I should see qTest Launch item on the Search page......................passed
]]>
</system-out>
</testcase>
<testcase classname="Example of a feature file" name="A simple passing scenario => PASSED" time="0.003952">
<system-out>
<![CDATA[Given the letter "A"........................................................passed
When I check the letter.....................................................passed
Then the letter should be "A"...............................................passed
]]>
</system-out>
</testcase>
<testcase classname="Example of a feature file" name="A simple passing scenario => FAILED" time="0.005546">
<failure message="org.junit.ComparisonFailure: expected:<[E]> but was:<[A]> 	at org.junit.Assert.assertEquals(Assert.java:115) 	at org.junit.Assert.assertEquals(Assert.java:144) 	at com.glue.ExampleChars.the_letter_should_be(ExampleChars.java:28) 	at ✽.the letter should be "A"(./resources/feature/example.feature:16) ">
<![CDATA[Given the letter "E"........................................................passed
When I check the letter.....................................................passed
Then the letter should be "A"...............................................failed
StackTrace:
org.junit.ComparisonFailure: expected:<[E]> but was:<[A]>
at org.junit.Assert.assertEquals(Assert.java:115)
at org.junit.Assert.assertEquals(Assert.java:144)
at com.glue.ExampleChars.the_letter_should_be(ExampleChars.java:28)
at ✽.the letter should be "A"(./resources/feature/example.feature:16)
]]>
</failure>
</testcase>
<testcase classname="During the week every person should go to work, but should not go in the weekends." name="It is Monday morning => PASSED" time="0.00229">
<system-out>
<![CDATA[Given There is a person.....................................................passed
And it is not weekend.......................................................passed
When the alarm rings........................................................passed
Then the person should get up and go to work................................passed
]]>
</system-out>
</testcase>
<testcase classname="During the week every person should go to work, but should not go in the weekends." name="It is Saturday morning => PASSED" time="0.001534">
<system-out>
<![CDATA[Given There is a person.....................................................passed
And it is weekend...........................................................passed
When the alarm rings........................................................passed
Then the person should not get up and go to work............................passed
]]>
</system-out>
</testcase>
<testcase classname="Hello World" name="Say hello => PASSED" time="0.001885">
<system-out>
<![CDATA[Given I have a hello app with "Howdy".......................................passed
When I ask it to say hi.....................................................passed
Then it should answer with "Howdy World"....................................passed
]]>
</system-out>
</testcase>
<testcase classname="Hello World" name="Welcome John => PASSED" time="0.001148">
<failure message="org.junit.ComparisonFailure: expected:<Welcome [John]> but was:<Welcome [World]> 	at org.junit.Assert.assertEquals(Assert.java:115) 	at org.junit.Assert.assertEquals(Assert.java:144) 	at com.glue.HelloWord.it_should_answer_with(HelloWord.java:30) 	at ✽.it should answer with "Welcome John"(./resources/feature/helloword.feature:11) ">
<![CDATA[Given I have a hello app with "Welcome".....................................passed
When I ask it to say hi.....................................................passed
Then it should answer with "Welcome John"...................................failed
StackTrace:
org.junit.ComparisonFailure: expected:<Welcome [John]> but was:<Welcome [World]>
at org.junit.Assert.assertEquals(Assert.java:115)
at org.junit.Assert.assertEquals(Assert.java:144)
at com.glue.HelloWord.it_should_answer_with(HelloWord.java:30)
at ✽.it should answer with "Welcome John"(./resources/feature/helloword.feature:11)
]]>
</failure>
</testcase>
<testcase classname="login to the system. As a user, I want to login into the system when I provide username and password" name="Verify that user can login to qTest site => PASSED" time="0.001752">
<system-out>
<![CDATA[Given I launch "http://192.168.74.69:8487/tc" page..........................passed
When I fill in "userName" with "[email protected]".....................passed
And I fill in "password" with "admin123"....................................passed
And I click on "logIn" button...............................................passed
Then I should see text "Nephele Local" in right side pane...................passed
]]>
</system-out>
</testcase>
<testcase classname="new feature name" name="test scenario" time="0.001814">
<failure message="The scenario has pending or undefined step(s)">
<![CDATA[Given I am doing something..................................................undefined
When I check the letter.....................................................skipped
Then something else.........................................................undefined
]]>
</failure>
</testcase>
</testsuite>