Code Coverage in QML
-
Can anyone help me with how to do code coverage analysis in QML?
Any document or steps to be followed?
Which is the best tool for code coverage? -
@JasmineSethi quick response: since QML is related to Javascript, from documentation:
QML has a deep JavaScript integration, and allows signal handlers and methods to be defined in JavaScript
I guess you may want to try a Javascript code coverage tool with QML
-
@fcarney @Pablo-J-Rogina : Thanks for your response. But what exactly i want is :
Function coverage
Line Coverage
Statement Coverage
Decision Coverage (or Branch Coverage)
Condition Coverage
MC/DC – Modified Condition/Decision Coverage
MCC – Multiple Condition CoverageHow can we achieve this in qml?
-
@JasmineSethi I recall Coco from Froglogic, maybe that tool can help you.
Disclaimer: I'm in no ways affiliated or endorse by Froglogic company.