-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integration with C++ coverage analysis #32
Comments
Hey, so my intent with pyrostest is to be useful for larger integration style testing, where coverage is less useful. It looks like gcov uses the same output format as python tools like coverage.py, so someone could probably integrate them somehow, but its not currently on my radar. |
Your project makes node unit/integration testing really pythonic and looks promising. Are you planning to add support for action mocks, service mocks, check action and check service similar to the topic mock and check functionality? The fact that "check_topic call can only recieve a single message" is limiting but you are planning to address this as well, I guess. A short explanation about the reason for my question: I search some workaround for
Sure, that would be one later topic on my todo list as well. |
Indeed, if I can figure it out, its proving to be harder to fix than I'd hoped.
Its not on my radar, unfortunately. I think doing this correctly would require a major refactor of some core bits of the library, which perhaps should happen, but aren't things that I can really focus on (this project is one that I work on in my spare time, and mostly for use on buzzmobile).
Ah, yeah I don't really think this library helps with that problem. Its really just a nice interface for making fakes for black box tests. Ros's multi-process architecture makes gray-box testing really, really annoying and IMO not worth it if your nodes are already black-box tested and unit/white-box tested internally. |
Ah, that's sad. (Without providing all basic functionalities
I understand that. Unfortunately focus on private projects (how valuable the outcome would be) is limited.
I continue to search for a solution for this, so true, really annoying problem as soon as it gets relevant and valuable enough. |
How can one integrate coverage analysis (e.g. gcov) for C++ nodes tested with pyrostest?
The text was updated successfully, but these errors were encountered: