AQTime Light Coverage Profiler identifies uncovered lines with only brackets or keywords (C++)
I have some strange Light Coverage result reported by AQTime (8.71.3483.7) It shows thats the lines containing only brackets (from if-else or try-catch blocks) and `if-else` keywords are uncovered. An exmaple code: template<typename T> class Klass { public: void do() { try { if ( ... ) { //... } else /* this line is reported as uncovered */ { //... } /* this line is reported as uncovered */ } catch (SomeEx&) { //... } /* this line is reported as uncovered */ catch (SomeOtherEx&) { //... } /* this line is reported as uncovered */ } }; The whole code is actually covered but the report shows such lines uncovered. is it expected behavour? How can I get rid of it? thanksSolved3.6KViews0likes2CommentsHow to auto-create request representation for GET methods?
Hi, I'm just getting started with test coverage in ReadyAPI. I use 2.2.0 at this time. In the representations panel of the request editor, I have enabled the "Auto-Create" option and then Irun my request. However, no representation is added to the list. Is there anything else I have to do to generate request representation for GET methods? Thanks in advance.1.5KViews0likes2Comments