My Robot file:
*** Settings ***
Library example
*** Test cases ***
testcase1: testcase2 - configure router for admins
keyword1
keyword2
keyword3
keyword4
In the above robot file, I have two testcases (testcase1 and testcase2). If I run the above robot file, its giving me the logs saying that "Total number of testcases passed is 1"
But I want to print number of testcases as two in logs.
If i try the following file its shows testcase1 contains no keywords.
testcase1:- configure router for admins
testcase2: - configure router for admins
keyword1
keyword1
keyword2
keyword3
keyword4
please let me know if there is a way to do this.