If you use the Test Runner in 3.9, take a look at TestRunner&gt;&gt;findCategories and TestRunner&gt;&gt;findClassesForCategories:&nbsp; maybe you can debug those methods to see what's happening.<br>Also if you could print: <br>
(TestCase buildSuite tests collect: [:aTest | aTest class ]) asSet includes: YourMissingTestCaseClass<br><br>If this returns true.. then is a problem in the test runner, if returns false, maybe your TestCase declares #isAbstract as true, or the super-class is incorrect.
<br><br>I hope this helps.<br>Cheers,<br>Diego<br><br><br><div><span class="gmail_quote">On 02 Jun 2006 15:57:32 -0400, <b class="gmail_sendername">R. Clayton</b> &lt;<a href="mailto:rvclayton@acm.org">rvclayton@acm.org</a>
&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">I have a project with the following categories and classes:<br><br>&nbsp;&nbsp;ContextFreeGrammar
<br>&nbsp;&nbsp;&nbsp;&nbsp;ContextFreeGrammar<br>&nbsp;&nbsp;&nbsp;&nbsp;ContextFreeGrammarTests<br>&nbsp;&nbsp;&nbsp;&nbsp;GrammarProduction<br>&nbsp;&nbsp;&nbsp;&nbsp;GrammarProductionTests<br>&nbsp;&nbsp;EarleyParser<br>&nbsp;&nbsp;&nbsp;&nbsp;EarleyParser<br>&nbsp;&nbsp;&nbsp;&nbsp;EarleyParserTestCases<br>&nbsp;&nbsp;&nbsp;&nbsp;EarleyParserTests<br>&nbsp;&nbsp;&nbsp;&nbsp;ParseState
<br>&nbsp;&nbsp;&nbsp;&nbsp;ParseStateSet<br>&nbsp;&nbsp;&nbsp;&nbsp;ParseStateSetTests<br>&nbsp;&nbsp;&nbsp;&nbsp;ParseStateTests<br><br>When I open a SUnit test runner, it lists the following:<br><br>&nbsp;&nbsp;[blah blah blah]<br><br>&nbsp;&nbsp;ColorTest<br>&nbsp;&nbsp;CompiledMethodTest<br>&nbsp;&nbsp;ComplexTest<br>
&nbsp;&nbsp;DateAndTimeEpochTest<br><br>&nbsp;&nbsp;[blah blah blah]<br><br>&nbsp;&nbsp;DurationTest<br>&nbsp;&nbsp;EarleyParserTestCases<br>&nbsp;&nbsp;EarleyParserTests<br>&nbsp;&nbsp;EventManagerTest<br><br>&nbsp;&nbsp;[blah blah blah]<br><br>&nbsp;&nbsp;FractionTest<br>&nbsp;&nbsp;HashAndEqualsTestCase<br>
<br>&nbsp;&nbsp;[blah blah blah]<br><br>&nbsp;&nbsp;OrderedCollectionTest<br>&nbsp;&nbsp;ParseStateSetTests<br>&nbsp;&nbsp;ParseStateTests<br>&nbsp;&nbsp;PasteUpMorphTest<br><br>&nbsp;&nbsp;[blah blah blah]<br><br>That is, it's missing ContextFreeGrammarTests and GrammarProductionTests.&nbsp;&nbsp;How
<br>can I fix or get around this?&nbsp;&nbsp;I've tried various combinations of<br><br> 1 switching between &quot;Test&quot; and &quot;Tests&quot;,<br><br> 2 filing out, deleting, and filing back in, and<br><br> 3 closing and reopening the test runner
<br><br>with no success.&nbsp;&nbsp;This is squeak 3.8 update 6665 on a debian testing system.<br><br><br></blockquote></div><br>