<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to bugs</title><link href="https://sourceforge.net/p/comunit/bugs/" rel="alternate"/><link href="https://sourceforge.net/p/comunit/bugs/feed.atom" rel="self"/><id>https://sourceforge.net/p/comunit/bugs/</id><updated>2002-09-18T11:06:41Z</updated><subtitle>Recent changes to bugs</subtitle><entry><title>Wrong error catching</title><link href="https://sourceforge.net/p/comunit/bugs/7/" rel="alternate"/><published>2002-09-18T11:06:41Z</published><updated>2002-09-18T11:06:41Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net874a0830488a298024d9dac685afdc193c5b0fc1</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Here is the situation:&lt;br /&gt;
I test my COM component, which raises an error in &lt;br /&gt;
some function.&lt;br /&gt;
I catch the error in my test and handle it as correct &lt;br /&gt;
situation (the test was supposed to get the error), after &lt;br /&gt;
handling Err is cleared.&lt;br /&gt;
But in the interface I still see the error, registered as if it &lt;br /&gt;
happened in TearDown.&lt;br /&gt;
Looks like the problem appears when working with &lt;br /&gt;
external resources raising errors, and clearing errors in &lt;br /&gt;
test code still does not help. The Err object still contains &lt;br /&gt;
error in TestCase.Run method after &lt;br /&gt;
calling &amp;amp;quot;m_oTestContainer.RunTestCase Me, &lt;br /&gt;
oTestResult&amp;amp;quot; and is shown as teardown error.&lt;br /&gt;
Such handling is wrong, because such bugs are already &lt;br /&gt;
handled in RunTestCase of test modules and should not &lt;br /&gt;
be shown, especially as errors in teardown.&lt;br /&gt;
To fix this I moved Err.Clear from block:&lt;br /&gt;
If (Err) Then&lt;br /&gt;
oTestResult.AddError Err.Number, Err.Source &lt;br /&gt;
&amp;amp;amp; &amp;amp;quot;::Setup&amp;amp;quot;, Err.Description&lt;br /&gt;
Err.Clear&lt;br /&gt;
Else&lt;br /&gt;
m_oTestContainer.RunTestCase Me, oTestResult&lt;br /&gt;
End If&lt;/p&gt;
&lt;p&gt;and put it after the block like this&lt;/p&gt;
&lt;p&gt;If (Err) Then&lt;br /&gt;
oTestResult.AddError Err.Number, Err.Source &lt;br /&gt;
&amp;amp;amp; &amp;amp;quot;::Setup&amp;amp;quot;, Err.Description&lt;br /&gt;
Else&lt;br /&gt;
m_oTestContainer.RunTestCase Me, oTestResult&lt;br /&gt;
End If&lt;br /&gt;
Err.Clear&lt;br /&gt;
. In such case we really catch only teardown errors and &lt;br /&gt;
RunTestCase errors are handled in RunTestCase. I hope &lt;br /&gt;
this helps and you include this correction in your new &lt;br /&gt;
version.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;
Michael Bykov&lt;br /&gt;
michaelb@softxp.com&lt;br /&gt;
Software Experts&lt;br /&gt;
www.softxp.com&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>COMUnitXML can't be built from sources</title><link href="https://sourceforge.net/p/comunit/bugs/6/" rel="alternate"/><published>2002-09-18T10:53:10Z</published><updated>2002-09-18T10:53:10Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.neta78aca1c9abe3df116ee8eb67cab9208cd626789</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;When trying to build COMUnitXML from sources (ver. &lt;br /&gt;
1.2) error appears telling it can't be done because of &lt;br /&gt;
broken binary compatibility with the old version in /lib/.&lt;br /&gt;
I could build it only by removing compatibility and &lt;br /&gt;
recompiling COMUnitRunner as well.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;
Michael Bykov&lt;br /&gt;
Software Experts&lt;br /&gt;
www.softxp.com&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>installation fails</title><link href="https://sourceforge.net/p/comunit/bugs/5/" rel="alternate"/><published>2002-04-17T09:52:32Z</published><updated>2002-04-17T09:52:32Z</updated><author><name>Stoil Valchkov</name><uri>https://sourceforge.net/u/stoil/</uri></author><id>https://sourceforge.netb30c6115b79ffd5e6e886237762edac7ed6eafe9</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I've tried to install COMUnit, but it says &lt;br /&gt;
&amp;amp;quot;Runtime error '76': Path not found&amp;amp;quot; when I press &lt;br /&gt;
install button.&lt;br /&gt;
If I clear check boxes under &amp;amp;quot;Add Visual Basic &lt;br /&gt;
Teplates&amp;amp;quot; installation passes.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Cosmetic bug</title><link href="https://sourceforge.net/p/comunit/bugs/4/" rel="alternate"/><published>2001-09-19T12:25:06Z</published><updated>2001-09-19T12:25:06Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.netef52605a79c4ab83f528bc857db7dc6fbd9adb0a</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;The UnitRunner ActiveX control has this little green, &lt;br /&gt;
annoying thing just above the 'Test Container:' label. &lt;br /&gt;
Seems to be part of the COMUnit icon.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Missing binary compatibility</title><link href="https://sourceforge.net/p/comunit/bugs/3/" rel="alternate"/><published>2001-08-21T21:29:47Z</published><updated>2001-08-21T21:29:47Z</updated><author><name>Owen Rogers</name><uri>https://sourceforge.net/u/exortech/</uri></author><id>https://sourceforge.nete53d79f969ca36db6bc5330e860f1c50ee0540e4</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Binaries are missing binary compatibility&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Missing reference to TypeLib info</title><link href="https://sourceforge.net/p/comunit/bugs/2/" rel="alternate"/><published>2001-08-21T21:18:19Z</published><updated>2001-08-21T21:18:19Z</updated><author><name>Owen Rogers</name><uri>https://sourceforge.net/u/exortech/</uri></author><id>https://sourceforge.nete5530efc0b5fab707c050ee6feff71358fb8c1ba</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Missing reference to TypeLib info in the COMUnit &lt;br /&gt;
Project Template.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Resizing bug</title><link href="https://sourceforge.net/p/comunit/bugs/1/" rel="alternate"/><published>2001-08-21T20:52:27Z</published><updated>2001-08-21T20:52:27Z</updated><author><name>Owen Rogers</name><uri>https://sourceforge.net/u/exortech/</uri></author><id>https://sourceforge.net5a27383232c3249ee881b743ad55fc86468207e7</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;In the UnitRunner and UnitTrace activeX controls, &lt;br /&gt;
there is a bug that will cause a failure if the form &lt;br /&gt;
is minimized.  This bug is also included in the resize &lt;br /&gt;
code for the UnitRunner form template.&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>