Hello,<br><br>Is there a tool that can do branch coverage testing of ternary/guard/default expressions. Eg:<br><br><div style="margin-left:40px"><span style="font-family:courier new,monospace">&#39;happy path&#39; if mostly_true() else 1/0</span><br style="font-family:courier new,monospace">
<span style="font-family:courier new,monospace">mostly_true() or 1/0</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">mostly_false() and 1/0</span><br></div><br>So if the test suite doesn&#39;t hit the 1/0&#39;s then it will indicate partial coverage.  I&#39;m new to branch coverage testing and testing python in general so sorry if this is a newb question.<br>
<br>Jason<br>