I want to get the test cases list in Robot Framework without launching the actual tests. I have to do this in java (maven project).
I know how to do this using python.
from robot.parsing.model import TestData
suite = TestData(parent=None, source=path_to_test_suite)
for testcase in suite.testcase_table:
print(testcase.name)
But how can I do similary in java?