<div dir="ltr">I don't think the unit tests should depend on the python tests.  They should be self contained.  In other words, the unit tests must be useful to someone who is compiling without support for embedded python.  I wouldn't want to have a unit test which is only useful if it's called from Python which has already done some initial setup.  Still, if you want to avoid having another entry poitn for convenience, you could expose something from the public API that allows you to just say "run all the unittests".  But there shouldn't be any setup in the python.  All the setup necessary to run a given test should happen in C++.</div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Oct 3, 2014 at 10:23 AM, Sean Callanan <span dir="ltr"><<a href="mailto:scallanan@apple.com" target="_blank">scallanan@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
> On Oct 2, 2014, at 9:27 PM, Todd Fiala <<a href="mailto:tfiala@google.com">tfiala@google.com</a>> wrote:<br>
><br>
> Hey Sean!<br>
> …<br>
<br>
Thanks for the introduction!  It looks like this is definitely in the direction of what I want.<br>
<span class=""><br>
> If we want to do collaboration tests (integration tests, etc.), we're probably into the "should be in python category", but we might have a few low-level multi-class testing scenarios where we might want a different gtest/functional, gtest/integration or something similar directory structure to handle those.  Would be good to have discussion around that if we find a valid use for it.<br>
<br>
</span>One thing I would like to be able to do for the expression parser is unit test in the context of a stopped process.<br>
I’m thinking of scenarios where I’d like to test e.g. the Materializer’s ability to read in variable data and make correct ValueObjects.<br>
<br>
One way to achieve this that comes to mind is to have a hook into the unit tests from the Python test suite, so we can set up the program’s state appropriately using our normal Python apparatus and then exercise exactly the functionality we want.<br>
<br>
Once we’ve got that kind of hook, we could just run all unit tests right from the Python test suite and avoid having another entry point.<br>
<br>
If you want IDE-friendly output, you could have an IDE-level target that runs test/dotest.py but singles out the unit tests.<br>
<div class="HOEnZb"><div class="h5"><br>
What do you think?<br>
<br>
Sean</div></div></blockquote></div><br></div>