Hi freinds,
I am looking for a query which will give me the number of test cases executed in a day, irrespective of whether they passed/failed/blocked etc.
I have the below query which gives me the result only in case the test case is passed and Exec Date is changed to current date in Test Lab. I want to get from the Exec date in test Instance properties which am not able to figure out.
SELECT
TESTCYCL.TC_USER_03 as Defect_ID,
TESTCYCL.TC_STATUS as Status,
TESTCYCL.TC_ACTUAL_TESTER as Tester,
TESTCYCL.TC_EXEC_DATE as Exec_Date,
TESTCYCL.TC_TEST_ID as Test_ID,
TESTCYCL.TC_USER_01 as Build_Number,
TEST.TS_NAME As 'plan name'
FROM
TESTCYCL,
test
WHERE TESTCYCL.TC_EXEC_DATE = '5/5/16'
AND TESTCYCL.TC_ACTUAL_TESTER = <NAME>
AND TEST.TS_TEST_ID = TESTCYCL.TC_TEST_ID
Thanks in advance