How can we get the results of assertion in Slim/Fitnesse
up vote
0
down vote
favorite
We have a fitnesse / slim table where in the fourth instruction is my assertion for the test case.is there a way we can get the result of this particular method as Pass or Fail.
For example
!|Fixture|
|method1|method2|method3|**method4**|
|res |res2 |res3 |**TCresult**|
For example here i want to know if method4 passed or failed.We have a different reporting system which cannot be done away with and every test case result needs to be validated.Also one test script have more that one test case in it.So we want the pass or fail of those methods which validate test cases.
java selenium-webdriver fitnesse fitnesse-slim
add a comment |
up vote
0
down vote
favorite
We have a fitnesse / slim table where in the fourth instruction is my assertion for the test case.is there a way we can get the result of this particular method as Pass or Fail.
For example
!|Fixture|
|method1|method2|method3|**method4**|
|res |res2 |res3 |**TCresult**|
For example here i want to know if method4 passed or failed.We have a different reporting system which cannot be done away with and every test case result needs to be validated.Also one test script have more that one test case in it.So we want the pass or fail of those methods which validate test cases.
java selenium-webdriver fitnesse fitnesse-slim
Can you post your fixture code? It's hard to understand what's happening without seeing the code.
– Mike Stockdale
Nov 8 at 4:50
Not enough information in the question. You've tagged it with "selenium-webdriver" so my guess might be you are trying to put fitnesse over the top of unit tests that utilize webdriver. Which may be very challenging depending on how those tests are architected.
– Jim Weaver
Nov 20 at 19:41
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
We have a fitnesse / slim table where in the fourth instruction is my assertion for the test case.is there a way we can get the result of this particular method as Pass or Fail.
For example
!|Fixture|
|method1|method2|method3|**method4**|
|res |res2 |res3 |**TCresult**|
For example here i want to know if method4 passed or failed.We have a different reporting system which cannot be done away with and every test case result needs to be validated.Also one test script have more that one test case in it.So we want the pass or fail of those methods which validate test cases.
java selenium-webdriver fitnesse fitnesse-slim
We have a fitnesse / slim table where in the fourth instruction is my assertion for the test case.is there a way we can get the result of this particular method as Pass or Fail.
For example
!|Fixture|
|method1|method2|method3|**method4**|
|res |res2 |res3 |**TCresult**|
For example here i want to know if method4 passed or failed.We have a different reporting system which cannot be done away with and every test case result needs to be validated.Also one test script have more that one test case in it.So we want the pass or fail of those methods which validate test cases.
java selenium-webdriver fitnesse fitnesse-slim
java selenium-webdriver fitnesse fitnesse-slim
edited Nov 8 at 4:47
Mike Stockdale
4,68832533
4,68832533
asked Nov 7 at 0:32
sai gopal
11
11
Can you post your fixture code? It's hard to understand what's happening without seeing the code.
– Mike Stockdale
Nov 8 at 4:50
Not enough information in the question. You've tagged it with "selenium-webdriver" so my guess might be you are trying to put fitnesse over the top of unit tests that utilize webdriver. Which may be very challenging depending on how those tests are architected.
– Jim Weaver
Nov 20 at 19:41
add a comment |
Can you post your fixture code? It's hard to understand what's happening without seeing the code.
– Mike Stockdale
Nov 8 at 4:50
Not enough information in the question. You've tagged it with "selenium-webdriver" so my guess might be you are trying to put fitnesse over the top of unit tests that utilize webdriver. Which may be very challenging depending on how those tests are architected.
– Jim Weaver
Nov 20 at 19:41
Can you post your fixture code? It's hard to understand what's happening without seeing the code.
– Mike Stockdale
Nov 8 at 4:50
Can you post your fixture code? It's hard to understand what's happening without seeing the code.
– Mike Stockdale
Nov 8 at 4:50
Not enough information in the question. You've tagged it with "selenium-webdriver" so my guess might be you are trying to put fitnesse over the top of unit tests that utilize webdriver. Which may be very challenging depending on how those tests are architected.
– Jim Weaver
Nov 20 at 19:41
Not enough information in the question. You've tagged it with "selenium-webdriver" so my guess might be you are trying to put fitnesse over the top of unit tests that utilize webdriver. Which may be very challenging depending on how those tests are architected.
– Jim Weaver
Nov 20 at 19:41
add a comment |
1 Answer
1
active
oldest
votes
up vote
-1
down vote
script
given test page Testpage
and Test System setup is !define TEST_SYSTEM {slim}
!path lib/*.jar
and Setup content is
!|import|
|fitnesse.slim.test|
!|Scenario|Stop Test|
|start|ConstructorThrows|stop test|
!|Scenario|Not Executed|MESSAGE |
|check|echo|@MESSAGE|cannot fail @MESSAGE|
and Test content is
!|Script|
|Stop Test|
|Not Executed and should be ignored|
!|Script|
|Not Executed and should be ignored as well|
when page Testpage is tested and HTML is extracted
then d assertions pass, 0 fail, 0 are ignored 1 exceptions thrown
and cell Stop Test has result error
and cell Not Executed and should be ignored has result ignore
and cell Not Executed and should be ignored as well has result ignore
and cell Test not run has result ignore
show Symbol $HTML_Input
show Symbol $HTML_Result
get collapsed executon log for page Testpage
Please use some formatting. The answer is illegible like this.
– Laurenz Albe
Nov 25 at 18:33
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
-1
down vote
script
given test page Testpage
and Test System setup is !define TEST_SYSTEM {slim}
!path lib/*.jar
and Setup content is
!|import|
|fitnesse.slim.test|
!|Scenario|Stop Test|
|start|ConstructorThrows|stop test|
!|Scenario|Not Executed|MESSAGE |
|check|echo|@MESSAGE|cannot fail @MESSAGE|
and Test content is
!|Script|
|Stop Test|
|Not Executed and should be ignored|
!|Script|
|Not Executed and should be ignored as well|
when page Testpage is tested and HTML is extracted
then d assertions pass, 0 fail, 0 are ignored 1 exceptions thrown
and cell Stop Test has result error
and cell Not Executed and should be ignored has result ignore
and cell Not Executed and should be ignored as well has result ignore
and cell Test not run has result ignore
show Symbol $HTML_Input
show Symbol $HTML_Result
get collapsed executon log for page Testpage
Please use some formatting. The answer is illegible like this.
– Laurenz Albe
Nov 25 at 18:33
add a comment |
up vote
-1
down vote
script
given test page Testpage
and Test System setup is !define TEST_SYSTEM {slim}
!path lib/*.jar
and Setup content is
!|import|
|fitnesse.slim.test|
!|Scenario|Stop Test|
|start|ConstructorThrows|stop test|
!|Scenario|Not Executed|MESSAGE |
|check|echo|@MESSAGE|cannot fail @MESSAGE|
and Test content is
!|Script|
|Stop Test|
|Not Executed and should be ignored|
!|Script|
|Not Executed and should be ignored as well|
when page Testpage is tested and HTML is extracted
then d assertions pass, 0 fail, 0 are ignored 1 exceptions thrown
and cell Stop Test has result error
and cell Not Executed and should be ignored has result ignore
and cell Not Executed and should be ignored as well has result ignore
and cell Test not run has result ignore
show Symbol $HTML_Input
show Symbol $HTML_Result
get collapsed executon log for page Testpage
Please use some formatting. The answer is illegible like this.
– Laurenz Albe
Nov 25 at 18:33
add a comment |
up vote
-1
down vote
up vote
-1
down vote
script
given test page Testpage
and Test System setup is !define TEST_SYSTEM {slim}
!path lib/*.jar
and Setup content is
!|import|
|fitnesse.slim.test|
!|Scenario|Stop Test|
|start|ConstructorThrows|stop test|
!|Scenario|Not Executed|MESSAGE |
|check|echo|@MESSAGE|cannot fail @MESSAGE|
and Test content is
!|Script|
|Stop Test|
|Not Executed and should be ignored|
!|Script|
|Not Executed and should be ignored as well|
when page Testpage is tested and HTML is extracted
then d assertions pass, 0 fail, 0 are ignored 1 exceptions thrown
and cell Stop Test has result error
and cell Not Executed and should be ignored has result ignore
and cell Not Executed and should be ignored as well has result ignore
and cell Test not run has result ignore
show Symbol $HTML_Input
show Symbol $HTML_Result
get collapsed executon log for page Testpage
script
given test page Testpage
and Test System setup is !define TEST_SYSTEM {slim}
!path lib/*.jar
and Setup content is
!|import|
|fitnesse.slim.test|
!|Scenario|Stop Test|
|start|ConstructorThrows|stop test|
!|Scenario|Not Executed|MESSAGE |
|check|echo|@MESSAGE|cannot fail @MESSAGE|
and Test content is
!|Script|
|Stop Test|
|Not Executed and should be ignored|
!|Script|
|Not Executed and should be ignored as well|
when page Testpage is tested and HTML is extracted
then d assertions pass, 0 fail, 0 are ignored 1 exceptions thrown
and cell Stop Test has result error
and cell Not Executed and should be ignored has result ignore
and cell Not Executed and should be ignored as well has result ignore
and cell Test not run has result ignore
show Symbol $HTML_Input
show Symbol $HTML_Result
get collapsed executon log for page Testpage
answered Nov 25 at 18:27
Shamm R
11
11
Please use some formatting. The answer is illegible like this.
– Laurenz Albe
Nov 25 at 18:33
add a comment |
Please use some formatting. The answer is illegible like this.
– Laurenz Albe
Nov 25 at 18:33
Please use some formatting. The answer is illegible like this.
– Laurenz Albe
Nov 25 at 18:33
Please use some formatting. The answer is illegible like this.
– Laurenz Albe
Nov 25 at 18:33
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53182097%2fhow-can-we-get-the-results-of-assertion-in-slim-fitnesse%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you post your fixture code? It's hard to understand what's happening without seeing the code.
– Mike Stockdale
Nov 8 at 4:50
Not enough information in the question. You've tagged it with "selenium-webdriver" so my guess might be you are trying to put fitnesse over the top of unit tests that utilize webdriver. Which may be very challenging depending on how those tests are architected.
– Jim Weaver
Nov 20 at 19:41