Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » Test and Performance Tools Platform (TPTP) » Parsing TPTP test execution results
Parsing TPTP test execution results [message #54289] Wed, 22 February 2006 12:24 Go to next message
Eclipse UserFriend
Originally posted by: tom.andersson.accenture.com

Hi.

I'm trying to convert TPTP AGR test results to a custom format from a
standalone application. So far I've managed to parse the
TPFExecutionResult instance and have access to all data in it.

Now the question remains how to find out names and possibly other
attributes for the testcases in the testsuite. Is there a nice way around
as the XMI file does only seem to have the ID's of the tests? Do i need to
couple the actual testsuite somehow to get access to testcase attributes?

Thanks in advance,
Tom
Re: Parsing TPTP test execution results [message #54316 is a reply to message #54289] Wed, 22 February 2006 13:13 Go to previous messageGo to next message
Paul Slauenwhite is currently offline Paul SlauenwhiteFriend
Messages: 975
Registered: July 2009
Senior Member
Hi Tom,
Yes, the execution results reference test suite(s0 and their test
case(s) through unique IDs. You will need to open the references test
suite(s) and find the references test case(s). For more information, see:

http://www.eclipse.org/tptp/platform/documents/resources/mod els/index.htm
http://www.eclipse.org/tptp/platform/documents/resources/mod els/cat3950c20c0018/cat3e68bb5f0068/cat3e694ae6010b/dgm3eb7c 8d60228.htm
http://download.eclipse.org/tptp/4.2.0/javadoc/Platform/publ ic/org/eclipse/hyades/models/common/testprofile/TPFExecution Result.html

Paul
"Tom Andersson" <tom.andersson@accenture.com> wrote in message
news:57101ebc4b54d0064033d92f1ede7549$1@www.eclipse.org...
> Hi.
>
> I'm trying to convert TPTP AGR test results to a custom format from a
> standalone application. So far I've managed to parse the
> TPFExecutionResult instance and have access to all data in it.
>
> Now the question remains how to find out names and possibly other
> attributes for the testcases in the testsuite. Is there a nice way around
> as the XMI file does only seem to have the ID's of the tests? Do i need to
> couple the actual testsuite somehow to get access to testcase attributes?
>
> Thanks in advance,
> Tom
>
>
Re: Parsing TPTP test execution results [message #54396 is a reply to message #54316] Wed, 22 February 2006 16:25 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: tom.andersson.accenture.com

Hi and thanks for the tips!

Unfortunately I still had no success in resolving test case properties..
It would probably be sufficient to be able to resolve the invocation
names. The problems i'm facing are:

1) When I load in the execution file and loop through the
TPFExecutionEvents, they seem to be missing a lot of information. For
example the text-property is null and the verdicts 'unknown' reasons. In
the XMI file these are shown ok. The verdict status (pass/fail..) are ok
though. Here's how i read the stuff in, does this look ok:

---------------
Common_TestprofilePackage profilePackage =
Common_TestprofilePackage.eINSTANCE;
URI xmiFileUri = URI.createFileURI(xmiFile.getAbsolutePath());
ResourceSet resourceSet = new ResourceSetImpl();
resourceSet.getResourceFactoryRegistry().getExtensionToFacto ryMap().put( "xmi",
new XMIResourceFactoryImpl());
resourceSet.getPackageRegistry().put(profilePackage.getNsURI (),
profilePackage);

return resourceSet.getResource(xmiFileUri, true);
---------------

2) I've now also loaded the actual TPFTestSuite so that i could compare
the ID's of the results and the actual testcases or invocations of the
testsuite. For some reason, though, the ID's of the TPFExecutionEvents
don't compare to the test suite id's very well (the id's of the loaded
events don't match the id's in the execution xmi-file).

Here's a sample what my events look like after they've been parsed:
---------------
org.eclipse.hyades.models.common.testprofile.impl.TPFVerdict EventImpl @1e845c2
(id: C9C6C362701E6C666DEFCEFFA3BD11DA, description: null, name: null)
(ownerId: E36787C12DEE9F254965F7C08F3C11DA(1), timestamp: 1140620582127,
text: null, eventType: null, scriptFileURI: null, scriptLineNumber: 0)
(verdict: fail, reason: unknown)
---------------

Phew.. so, I guess I'm going wrong here somewhere. Any help is appreciated.

Thanks,
Tom
Re: Parsing TPTP test execution results [message #55157 is a reply to message #54396] Mon, 27 February 2006 15:35 Go to previous messageGo to next message
Marius Slavescu is currently offline Marius SlavescuFriend
Messages: 67
Registered: July 2009
Member
Hi Tom,

Please could you attach one of your test cases with an associated
execution results file (that works as you explain bellow).

--Marius


Tom Andersson wrote:
> Hi and thanks for the tips!
>
> Unfortunately I still had no success in resolving test case properties..
> It would probably be sufficient to be able to resolve the invocation
> names. The problems i'm facing are:
>
> 1) When I load in the execution file and loop through the
> TPFExecutionEvents, they seem to be missing a lot of information. For
> example the text-property is null and the verdicts 'unknown' reasons. In
> the XMI file these are shown ok. The verdict status (pass/fail..) are ok
> though. Here's how i read the stuff in, does this look ok:
>
> ---------------
> Common_TestprofilePackage profilePackage =
> Common_TestprofilePackage.eINSTANCE;
> URI xmiFileUri = URI.createFileURI(xmiFile.getAbsolutePath());
> ResourceSet resourceSet = new ResourceSetImpl();
>
> resourceSet.getResourceFactoryRegistry().getExtensionToFacto ryMap().put( "xmi",
> new XMIResourceFactoryImpl());
> resourceSet.getPackageRegistry().put(profilePackage.getNsURI (),
> profilePackage);
>
> return resourceSet.getResource(xmiFileUri, true);
> ---------------
>
> 2) I've now also loaded the actual TPFTestSuite so that i could compare
> the ID's of the results and the actual testcases or invocations of the
> testsuite. For some reason, though, the ID's of the TPFExecutionEvents
> don't compare to the test suite id's very well (the id's of the loaded
> events don't match the id's in the execution xmi-file).
>
> Here's a sample what my events look like after they've been parsed:
> ---------------
> org.eclipse.hyades.models.common.testprofile.impl.TPFVerdict EventImpl @1e845c2
> (id: C9C6C362701E6C666DEFCEFFA3BD11DA, description: null, name: null)
> (ownerId: E36787C12DEE9F254965F7C08F3C11DA(1), timestamp: 1140620582127,
> text: null, eventType: null, scriptFileURI: null, scriptLineNumber: 0)
> (verdict: fail, reason: unknown)
> ---------------
>
> Phew.. so, I guess I'm going wrong here somewhere. Any help is appreciated.
>
> Thanks,
> Tom
>
Re: Parsing TPTP test execution results [message #55403 is a reply to message #55157] Tue, 28 February 2006 09:41 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: tom.andersson.accenture.com

Hi!

We actually solved the problem already (in a very dirty way though). Would
be nice to do it right too. Here's a single testcase from the testsuite:

*UGLY PASTE WARNING*
-------
<testCases id="DED1ABF322C1E71C1A23310091AB11DA" description=""
name="Test java perspective"
type="org.eclipse.hyades.test.auto.gui.testSuite">
<behavior id="DED1ABF322C1E71C1A263E4091AB11DA" name="Automated GUI
Test_behavior">
<interaction>
<lifelines id="DED1ABF322C1E71C1A263E4291AB11DA"
name="_selfLifeline" instances="DED1ABF322C1E71C1A263E4191AB11DA"/>
<interactionFragments
xsi:type="Common_Behavior_Interactions:BVRMessageEnd"
id="DED1ABF322C1E71C1A263E4391AB11DA">
<messages/>
<properties id="DED1ABF322C1E71C1A263E4491AB11DA" name="0"
value="org.eclipse.jdt.ui.JavaPerspective"/>
<properties id="DED1ABF322C1E71C1A263E4591AB11DA" name="1"
value="&lt;macro version=&quot;0.1&quot; >&#xD;&#xA; &lt;shell
id=&quot;org.eclipse.ui.internal.WorkbenchWindow&quo t;
return-code=&quot;-1&quot;>&#xD;&#xA; &lt;command
type=&quot;select&quot; contextId=&quot;menus&quot;
widgetId=&quot;org.eclipse.ui.actions.NewWizardMenu#{{&a mp;amp;amp;File-&amp;amp;New&amp;#x9;Alt+Shift+N-&am p;amp;amp;Package}}-{{0.8}}{{0|0|2}}-{{0.6}}{{true}}-{{0.1}} {{16}}-{{0.1}}{{separator}}-{{0.2}}{{&amp;amp;Class}}-{{ 0.2}}&quot; >&#xD;&#xA;
&lt;parent widgetId=&quot;file&quot;/>&#xD;&#xA;
&lt;parent widgetId=&quot;new&quot;/>&#xD;&#xA;
&lt;/command>&#xD;&#xA; &lt;shell
id=&quot;org.eclipse.jface.wizard.WizardDialog&quot;
return-code=&quot;1&quot;>&#xD;&#xA; &lt;command
type=&quot;focus&quot;
contextId=&quot;wizard-page/NewPackageWizardPage&quo t;
widgetId=&quot;org.eclipse.swt.widgets.Button#1&quot ;/ >&#xD;&#xA;
&lt;command type=&quot;modify&quot;
contextId=&quot;wizard-page/NewPackageWizardPage&quo t;
widgetId=&quot;org.eclipse.swt.widgets.Text#1&quot;>&#xD;&#xA;
&lt;![CDATA[123]]>&#xD;&#xA; &lt;/command>&#xD;&#xA;
&lt;command type=&quot;modify&quot;
contextId=&quot;wizard-page/NewPackageWizardPage&quo t;
widgetId=&quot;org.eclipse.swt.widgets.Text#2&quot;>&#xD;&#xA;
&lt;![CDATA[321]]>&#xD;&#xA; &lt;/command>&#xD;&#xA;
&lt;command type=&quot;select&quot; contextId=&quot;wizard&quot;
widgetId=&quot;org.eclipse.swt.widgets.Button#{{1}}-{{1. 0}}&quot;/ >&#xD;&#xA;
&lt;/shell>&#xD;&#xA; &lt;/shell>&#xD;&#xA;&lt;/macro>&#xD;&#xA; "/>
</interactionFragments>
</interaction>
</behavior>
</testCases>
------

And here's the corresponding results:

------
<executionEvents xsi:type="Common_Testprofile:TPFInvocationEvent"
id="DED1ABF322C1E71C56607C9091AB11DA(2)"
ownerId="DED1ABF322C1E71C56607C9091AB11DA" timestamp="1140620580835"
status="successful">
<interactionFragment
xsi:type="Common_Behavior_Interactions:BVRExecutionOccurrence "
href=" test-resources/EclipseTests.testsuite#DED1ABF322C1E71C56607C 9091AB11DA "/>
<invokedExecutionResult id="DED1ABF322C1E71C56607C9091AB11DA"
verdict="pass" type="org.eclipse.hyades.test.auto.gui.testSuite">
<executionHistory>
<executionEvents xsi:type="Common_Testprofile:TPFTypedEvent"
ownerId="DED1ABF322C1E71C56607C9091AB11DA" timestamp="1140620580835">
<interactionFragment
xsi:type="Common_Behavior_Interactions:BVRExecutionOccurrence "
href=" test-resources/EclipseTests.testsuite#DED1ABF322C1E71C56607C 9091AB11DA "/>
</executionEvents>
<executionEvents xsi:type="Common_Testprofile:TPFVerdictEvent"
id="DED1ABF322C1E71C56607C9091AB11DA(2)_verdict"
ownerId="DED1ABF322C1E71C1A23310091AB11DA(1)" timestamp="1140620582127"
verdict="pass"/>
<executionEvents xsi:type="Common_Testprofile:TPFTypedEvent"
ownerId="DED1ABF322C1E71C56607C9091AB11DA" timestamp="1140620582127"
type="stop">
<interactionFragment
xsi:type="Common_Behavior_Interactions:BVRExecutionOccurrence "
href=" test-resources/EclipseTests.testsuite#DED1ABF322C1E71C56607C 9091AB11DA "/>
</executionEvents>
</executionHistory>
<test xsi:type="Common_Testprofile:TPFTestCase"
href=" test-resources/EclipseTests.testsuite#DED1ABF322C1E71C1A2331 0091AB11DA "/>
</invokedExecutionResult>
</executionEvents>
<executionEvents xsi:type="Common_Testprofile:TPFVerdictEvent"
ownerId="E36787C12DEE9F254965F7C08F3C11DA(1)" timestamp="1140620582127"
verdict="fail"/>
<executionEvents xsi:type="Common_Testprofile:TPFTypedEvent"
timestamp="1140620582127" type="stop"/>
</executionHistory>
Re: Parsing TPTP test execution results [message #55483 is a reply to message #55403] Tue, 28 February 2006 14:47 Go to previous messageGo to next message
Marius Slavescu is currently offline Marius SlavescuFriend
Messages: 67
Registered: July 2009
Member
Hi Tom,

Please can you attach the actual files not only snippets from them, both
snippets are invalid or incomplete XMI test resources content, if this
is the actual content how did you produced them?

The header of the execution result file should be something like this:

<?xml version="1.0" encoding="UTF-8"?>
<Common_Testprofile:TPFExecutionResult xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:Common_Behavior_Interactions=" http://www.eclipse.org/hyades/models/common/behavior/interac tions.xmi"
xmlns:Common_Testprofile="http://www.eclipse.org/hyades/models/common/testprofile.xmi"
id="E39DDFDD49079B83FAF02F70350E11DA" name="EclipseTests" verdict="pass"
type="org.eclipse.hyades.test.auto.gui.testSuite">

and in the testsuite file it should be:

<?xml version="1.0" encoding="UTF-8"?>
<Common_Testprofile:TPFTestSuite xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:Common_Behavior_Interactions=" http://www.eclipse.org/hyades/models/common/behavior/interac tions.xmi"
xmlns:Common_Testprofile="http://www.eclipse.org/hyades/models/common/testprofile.xmi"
id="DED1ABF322C1E71C1A23310091AB11DA" description="" name="Test java
perspective" type="org.eclipse.hyades.test.auto.gui.testSuite">

--Marius

Tom Andersson wrote:
> Hi!
>
> We actually solved the problem already (in a very dirty way though).
> Would be nice to do it right too. Here's a single testcase from the
> testsuite:
>
> *UGLY PASTE WARNING*
> -------
> <testCases id="DED1ABF322C1E71C1A23310091AB11DA" description=""
> name="Test java perspective"
> type="org.eclipse.hyades.test.auto.gui.testSuite">
> <behavior id="DED1ABF322C1E71C1A263E4091AB11DA" name="Automated GUI
> Test_behavior">
> <interaction>
> <lifelines id="DED1ABF322C1E71C1A263E4291AB11DA"
> name="_selfLifeline" instances="DED1ABF322C1E71C1A263E4191AB11DA"/>
> <interactionFragments
> xsi:type="Common_Behavior_Interactions:BVRMessageEnd"
> id="DED1ABF322C1E71C1A263E4391AB11DA">
> <messages/>
> <properties id="DED1ABF322C1E71C1A263E4491AB11DA" name="0"
> value="org.eclipse.jdt.ui.JavaPerspective"/>
> <properties id="DED1ABF322C1E71C1A263E4591AB11DA" name="1"
> value="&lt;macro version=&quot;0.1&quot; >&#xD;&#xA; &lt;shell
> id=&quot;org.eclipse.ui.internal.WorkbenchWindow&quo t;
> return-code=&quot;-1&quot;>&#xD;&#xA; &lt;command
> type=&quot;select&quot; contextId=&quot;menus&quot;
> widgetId=&quot;org.eclipse.ui.actions.NewWizardMenu#{{&a mp;amp;amp;File-&amp;amp;New&amp;#x9;Alt+Shift+N-&am p;amp;amp;Package}}-{{0.8}}{{0|0|2}}-{{0.6}}{{true}}-{{0.1}} {{16}}-{{0.1}}{{separator}}-{{0.2}}{{&amp;amp;Class}}-{{ 0.2}}&quot; >&#xD;&#xA;
> &lt;parent widgetId=&quot;file&quot;/>&#xD;&#xA;
> &lt;parent widgetId=&quot;new&quot;/>&#xD;&#xA;
> &lt;/command>&#xD;&#xA; &lt;shell
> id=&quot;org.eclipse.jface.wizard.WizardDialog&quot;
> return-code=&quot;1&quot;>&#xD;&#xA; &lt;command
> type=&quot;focus&quot;
> contextId=&quot;wizard-page/NewPackageWizardPage&quo t;
> widgetId=&quot;org.eclipse.swt.widgets.Button#1&quot ;/ >&#xD;&#xA;
> &lt;command type=&quot;modify&quot;
> contextId=&quot;wizard-page/NewPackageWizardPage&quo t;
> widgetId=&quot;org.eclipse.swt.widgets.Text#1&quot;>&#xD;&#xA;
> &lt;![CDATA[123]]>&#xD;&#xA; &lt;/command>&#xD;&#xA;
> &lt;command type=&quot;modify&quot;
> contextId=&quot;wizard-page/NewPackageWizardPage&quo t;
> widgetId=&quot;org.eclipse.swt.widgets.Text#2&quot;>&#xD;&#xA;
> &lt;![CDATA[321]]>&#xD;&#xA; &lt;/command>&#xD;&#xA;
> &lt;command type=&quot;select&quot; contextId=&quot;wizard&quot;
> widgetId=&quot;org.eclipse.swt.widgets.Button#{{1}}-{{1. 0}}&quot;/ >&#xD;&#xA;
> &lt;/shell>&#xD;&#xA; &lt;/shell>&#xD;&#xA;&lt;/macro>&#xD;&#xA; "/>
> </interactionFragments>
> </interaction>
> </behavior>
> </testCases>
> ------
>
> And here's the corresponding results:
>
> ------
> <executionEvents xsi:type="Common_Testprofile:TPFInvocationEvent"
> id="DED1ABF322C1E71C56607C9091AB11DA(2)"
> ownerId="DED1ABF322C1E71C56607C9091AB11DA" timestamp="1140620580835"
> status="successful">
> <interactionFragment
> xsi:type="Common_Behavior_Interactions:BVRExecutionOccurrence "
> href=" test-resources/EclipseTests.testsuite#DED1ABF322C1E71C56607C 9091AB11DA "/>
>
> <invokedExecutionResult id="DED1ABF322C1E71C56607C9091AB11DA"
> verdict="pass" type="org.eclipse.hyades.test.auto.gui.testSuite">
> <executionHistory>
> <executionEvents xsi:type="Common_Testprofile:TPFTypedEvent"
> ownerId="DED1ABF322C1E71C56607C9091AB11DA" timestamp="1140620580835">
> <interactionFragment
> xsi:type="Common_Behavior_Interactions:BVRExecutionOccurrence "
> href=" test-resources/EclipseTests.testsuite#DED1ABF322C1E71C56607C 9091AB11DA "/>
>
> </executionEvents>
> <executionEvents xsi:type="Common_Testprofile:TPFVerdictEvent"
> id="DED1ABF322C1E71C56607C9091AB11DA(2)_verdict"
> ownerId="DED1ABF322C1E71C1A23310091AB11DA(1)" timestamp="1140620582127"
> verdict="pass"/>
> <executionEvents xsi:type="Common_Testprofile:TPFTypedEvent"
> ownerId="DED1ABF322C1E71C56607C9091AB11DA" timestamp="1140620582127"
> type="stop">
> <interactionFragment
> xsi:type="Common_Behavior_Interactions:BVRExecutionOccurrence "
> href=" test-resources/EclipseTests.testsuite#DED1ABF322C1E71C56607C 9091AB11DA "/>
>
> </executionEvents>
> </executionHistory>
> <test xsi:type="Common_Testprofile:TPFTestCase"
> href=" test-resources/EclipseTests.testsuite#DED1ABF322C1E71C1A2331 0091AB11DA "/>
>
> </invokedExecutionResult>
> </executionEvents>
> <executionEvents xsi:type="Common_Testprofile:TPFVerdictEvent"
> ownerId="E36787C12DEE9F254965F7C08F3C11DA(1)" timestamp="1140620582127"
> verdict="fail"/>
> <executionEvents xsi:type="Common_Testprofile:TPFTypedEvent"
> timestamp="1140620582127" type="stop"/>
> </executionHistory>
>
>
>
>
Re: Parsing TPTP test execution results [message #55510 is a reply to message #55483] Tue, 28 February 2006 14:58 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: tom.andersson.accenture.com

Ah sure.. guess I'll just have to paste the contents here. Using the
webreader. Fortunately they're not that big :) Thanks for the effort!

So here goes, testsuite and execution:

testsuite.xmi
----------------
<?xml version="1.0" encoding="UTF-8"?>
<Common_Testprofile:TPFTestSuite xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:Common_Behavior_Interactions=" http://www.eclipse.org/hyades/models/common/behavior/interac tions.xmi"
xmlns:Common_Testprofile="http://www.eclipse.org/hyades/models/common/testprofile.xmi"
id="E36787C12DEE9F254965F7C08F3C11DA" description="Some plain Eclipse GUI
tests for testing command-line / maven launching." name="EclipseTests"
instantiations="E36787C12DEE9F254982F5A18F3C11DA
E36787C12DEE9F2561C522518F3C11DA E36787C12DEE9F25830F2AF18F3C11DA
DED1ABF322C1E71C1A263E4191AB11DA"
type="org.eclipse.hyades.test.auto.gui.testSuite"
persistenceId="HyadesFacadeResource">
<instances id="E36787C12DEE9F254982F5A18F3C11DA"
lifeline="E36787C12DEE9F2549847C408F3C11DA"
classType="E36787C12DEE9F254965F7C08F3C11DA"/>
<instances id="E36787C12DEE9F25498602E08F3C11DA"
name="ECLIPSE_WORKBENCH"/>
<instances id="E36787C12DEE9F25498602E18F3C11DA"
name="USE_CURRENT_WORKBENCH" initialValue="true"/>
<instances id="E36787C12DEE9F2561C522518F3C11DA"
lifeline="E36787C12DEE9F2561C522528F3C11DA"
classType="E36787C12DEE9F254965F7C08F3C11DA"/>
<instances id="E36787C12DEE9F25830F2AF18F3C11DA"
classType="E36787C12DEE9F254965F7C08F3C11DA"/>
<instances id="DED1ABF322C1E71C1A263E4191AB11DA"
lifeline="DED1ABF322C1E71C1A263E4291AB11DA"
classType="E36787C12DEE9F254965F7C08F3C11DA"/>
<behavior id="E36787C12DEE9F254982F5A08F3C11DA"
name="EclipseTests_behavior"
resource="com.tecnomen.ngm.oetm.ui.hooks.EclipseVerifications "
location="/oetm-itest/src">
<interaction>
<lifelines id="E36787C12DEE9F2549847C408F3C11DA"
name="_selfLifeline" instances="E36787C12DEE9F254982F5A18F3C11DA"/>
<interactionFragments
xsi:type="Common_Behavior_Interactions:BVRExecutionOccurrence "
id="E36787C12DEE9F258E86A7508F3C11DA" name="Test debug perspective -
invocation" otherBehavior="E36787C12DEE9F2561C522508F3C11DA"/>
<interactionFragments
xsi:type="Common_Behavior_Interactions:BVRExecutionOccurrence "
id="DED1ABF322C1E71C56607C9091AB11DA" name="Test java perspective -
invocation" otherBehavior="DED1ABF322C1E71C1A263E4091AB11DA"/>
</interaction>
</behavior>
<testCases id="E36787C12DEE9F2561C215108F3C11DA" description=""
name="Test debug perspective"
type="org.eclipse.hyades.test.auto.gui.testSuite">
<behavior id="E36787C12DEE9F2561C522508F3C11DA" name="Test debug
perspective_behavior">
<interaction>
<lifelines id="E36787C12DEE9F2561C522528F3C11DA"
name="_selfLifeline" instances="E36787C12DEE9F2561C522518F3C11DA"/>
<interactionFragments
xsi:type="Common_Behavior_Interactions:BVRMessageEnd"
id="E36787C12DEE9F2561C6A8F08F3C11DA">
<messages/>
<properties id="E36787C12DEE9F2561C82F908F3C11DA" name="0"
value="org.eclipse.debug.ui.DebugPerspective"/>
<properties id="E36787C12DEE9F2561C82F918F3C11DA" name="1"
value="&lt;macro version=&quot;0.1&quot; >&#xD;&#xA; &lt;shell
id=&quot;org.eclipse.ui.internal.WorkbenchWindow&quo t;
return-code=&quot;-1&quot;>&#xD;&#xA; &lt;command
type=&quot;select&quot; contextId=&quot;menus&quot;
widgetId=&quot;contribclass/org.eclipse.ui.actions.NewWi zardMenu0|0|0&quot; >&#xD;&#xA;
&lt;parent widgetId=&quot;file&quot;/>&#xD;&#xA;
&lt;parent widgetId=&quot;new&quot;/>&#xD;&#xA;
&lt;/command>&#xD;&#xA; &lt;shell
id=&quot;org.eclipse.jface.wizard.WizardDialog&quot;
return-code=&quot;1&quot;>&#xD;&#xA; &lt;command
type=&quot;select&quot; contextId=&quot;wizard&quot;
widgetId=&quot;org.eclipse.swt.widgets.Button#{{1}}-{{1. 0}}&quot;/ >&#xD;&#xA;
&lt;/shell>&#xD;&#xA; &lt;command
type=&quot;wait&quot;/>&#xD;&#xA; &lt;command
type=&quot;verification&quot;
contextId=&quot;view/org.eclipse.debug.ui.DebugView& quot;
location=&quot;/oetm-itest/src&quot;
resource=&quot;com.tecnomen.ngm.oetm.ui.hooks.EclipseVer ifications&quot;
hook=&quot;verifyDebugTitle:Qorg.eclipse.ui.IViewPart;&a mp;quot;/ >&#xD;&#xA;
&lt;command type=&quot;wait&quot;/>&#xD;&#xA; &lt;command
type=&quot;select&quot; contextId=&quot;menus&quot;
widgetId=&quot;contribclass/org.eclipse.ui.actions.NewWi zardMenu0|0|0&quot; >&#xD;&#xA;
&lt;parent widgetId=&quot;file&quot;/>&#xD;&#xA;
&lt;parent widgetId=&quot;new&quot;/>&#xD;&#xA;
&lt;/command>&#xD;&#xA; &lt;shell
id=&quot;org.eclipse.jface.wizard.WizardDialog&quot;
return-code=&quot;1&quot;>&#xD;&#xA; &lt;command
type=&quot;select&quot; contextId=&quot;wizard&quot;
widgetId=&quot;org.eclipse.swt.widgets.Button#{{1}}-{{1. 0}}&quot;/ >&#xD;&#xA;
&lt;/shell>&#xD;&#xA; &lt;command type=&quot;select&quot;
contextId=&quot;menus&quot;
widgetId=&quot;contribclass/org.eclipse.ui.actions.NewWi zardMenu0|0|0&quot; >&#xD;&#xA;
&lt;parent widgetId=&quot;file&quot;/>&#xD;&#xA;
&lt;parent widgetId=&quot;new&quot;/>&#xD;&#xA;
&lt;/command>&#xD;&#xA; &lt;shell
id=&quot;org.eclipse.jface.wizard.WizardDialog&quot;
return-code=&quot;1&quot;>&#xD;&#xA; &lt;command
type=&quot;select&quot; contextId=&quot;wizard&quot;
widgetId=&quot;org.eclipse.swt.widgets.Button#{{1}}-{{1. 0}}&quot;/ >&#xD;&#xA;
&lt;/shell>&#xD;&#xA; &lt;command type=&quot;select&quot;
contextId=&quot;menus&quot;
widgetId=&quot;contribclass/org.eclipse.ui.actions.NewWi zardMenu0|0|0&quot; >&#xD;&#xA;
&lt;parent widgetId=&quot;file&quot;/>&#xD;&#xA;
&lt;parent widgetId=&quot;new&quot;/>&#xD;&#xA;
&lt;/command>&#xD;&#xA; &lt;shell
id=&quot;org.eclipse.jface.wizard.WizardDialog&quot;
return-code=&quot;1&quot;>&#xD;&#xA; &lt;command
type=&quot;select&quot; contextId=&quot;wizard&quot;
widgetId=&quot;org.eclipse.swt.widgets.Button#{{1}}-{{1. 0}}&quot;/ >&#xD;&#xA;
&lt;/shell>&#xD;&#xA;&#xD;&#xA;
&lt;/shell>&#xD;&#xA;&lt;/macro>&#xD;&#xA; "/>
</interactionFragments>
</interaction>
</behavior>
</testCases>
<testCases id="DED1ABF322C1E71C1A23310091AB11DA" description=""
name="Test java perspective"
type="org.eclipse.hyades.test.auto.gui.testSuite">
<behavior id="DED1ABF322C1E71C1A263E4091AB11DA" name="Automated GUI
Test_behavior">
<interaction>
<lifelines id="DED1ABF322C1E71C1A263E4291AB11DA"
name="_selfLifeline" instances="DED1ABF322C1E71C1A263E4191AB11DA"/>
<interactionFragments
xsi:type="Common_Behavior_Interactions:BVRMessageEnd"
id="DED1ABF322C1E71C1A263E4391AB11DA">
<messages/>
<properties id="DED1ABF322C1E71C1A263E4491AB11DA" name="0"
value="org.eclipse.jdt.ui.JavaPerspective"/>
<properties id="DED1ABF322C1E71C1A263E4591AB11DA" name="1"
value="&lt;macro version=&quot;0.1&quot; >&#xD;&#xA; &lt;shell
id=&quot;org.eclipse.ui.internal.WorkbenchWindow&quo t;
return-code=&quot;-1&quot;>&#xD;&#xA; &lt;command
type=&quot;select&quot; contextId=&quot;menus&quot;
widgetId=&quot;org.eclipse.ui.actions.NewWizardMenu#{{&a mp;amp;amp;File-&amp;amp;New&amp;#x9;Alt+Shift+N-&am p;amp;amp;Package}}-{{0.8}}{{0|0|2}}-{{0.6}}{{true}}-{{0.1}} {{16}}-{{0.1}}{{separator}}-{{0.2}}{{&amp;amp;Class}}-{{ 0.2}}&quot; >&#xD;&#xA;
&lt;parent widgetId=&quot;file&quot;/>&#xD;&#xA;
&lt;parent widgetId=&quot;new&quot;/>&#xD;&#xA;
&lt;/command>&#xD;&#xA; &lt;shell
id=&quot;org.eclipse.jface.wizard.WizardDialog&quot;
return-code=&quot;1&quot;>&#xD;&#xA; &lt;command
type=&quot;focus&quot;
contextId=&quot;wizard-page/NewPackageWizardPage&quo t;
widgetId=&quot;org.eclipse.swt.widgets.Button#1&quot ;/ >&#xD;&#xA;
&lt;command type=&quot;modify&quot;
contextId=&quot;wizard-page/NewPackageWizardPage&quo t;
widgetId=&quot;org.eclipse.swt.widgets.Text#1&quot;>&#xD;&#xA;
&lt;![CDATA[123]]>&#xD;&#xA; &lt;/command>&#xD;&#xA;
&lt;command type=&quot;modify&quot;
contextId=&quot;wizard-page/NewPackageWizardPage&quo t;
widgetId=&quot;org.eclipse.swt.widgets.Text#2&quot;>&#xD;&#xA;
&lt;![CDATA[321]]>&#xD;&#xA; &lt;/command>&#xD;&#xA;
&lt;command type=&quot;select&quot; contextId=&quot;wizard&quot;
widgetId=&quot;org.eclipse.swt.widgets.Button#{{1}}-{{1. 0}}&quot;/ >&#xD;&#xA;
&lt;/shell>&#xD;&#xA; &lt;/shell>&#xD;&#xA;&lt;/macro>&#xD;&#xA; "/>
</interactionFragments>
</interaction>
</behavior>
</testCases>
</Common_Testprofile:TPFTestSuite>


----------------
execution.xmi
----------------
<?xml version="1.0" encoding="UTF-8"?>
<Common_Testprofile:TPFExecutionResult xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:Common_Behavior_Interactions=" http://www.eclipse.org/hyades/models/common/behavior/interac tions.xmi"
xmlns:Common_Testprofile="http://www.eclipse.org/hyades/models/common/testprofile.xmi"
id="E36787C12DEE9F254965F7C08F3C11DA" name="EclipseTests" verdict="fail"
type="org.eclipse.hyades.test.auto.gui.testSuite">
<executionHistory>
<executionEvents xsi:type="Common_Testprofile:TPFTypedEvent"
timestamp="1140620578261"/>
<executionEvents xsi:type="Common_Testprofile:TPFInvocationEvent"
id="E36787C12DEE9F258E86A7508F3C11DA(1)"
ownerId="E36787C12DEE9F258E86A7508F3C11DA" timestamp="1140620578261"
status="successful">
<interactionFragment
xsi:type="Common_Behavior_Interactions:BVRExecutionOccurrence "
href=" test-resources/EclipseTests.testsuite#E36787C12DEE9F258E86A7 508F3C11DA "/>
<invokedExecutionResult id="E36787C12DEE9F258E86A7508F3C11DA"
verdict="fail" type="org.eclipse.hyades.test.auto.gui.testSuite">
<executionHistory>
<executionEvents xsi:type="Common_Testprofile:TPFTypedEvent"
ownerId="E36787C12DEE9F258E86A7508F3C11DA" timestamp="1140620578261">
<interactionFragment
xsi:type="Common_Behavior_Interactions:BVRExecutionOccurrence "
href=" test-resources/EclipseTests.testsuite#E36787C12DEE9F258E86A7 508F3C11DA "/>
</executionEvents>
<executionEvents xsi:type="Common_Testprofile:TPFVerdictEvent"
id="E36787C12DEE9F258E86A7508F3C11DA(1)_verdict"
ownerId="E36787C12DEE9F2561C215108F3C11DA(1)" timestamp="1140620580024"
text="junit.framework.ComparisonFailure: Wrong debug view title
expected:&lt;...> but was:&lt;...g>&#xD;&#xA;&#x9;at
junit.framework.Assert.assertEquals(Assert.java:81)&#xD; &#xA;&#x9;at
com.tecnomen.ngm.oetm.ui.hooks.EclipseVerifications.verifyDe bugTitle(EclipseVerifications.java:46)&#xD;&#xA;& ;#x9;at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)&#xD;&#xA;&#x9;at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown
Source)&#xD;&#xA;&#x9;at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source)&#xD;&#xA;&#x9;at java.lang.reflect.Method.invoke(Unknown
Source)&#xD;&#xA;&#x9;at
org.eclipse.tptp.test.auto.gui.internal.runner.AutoGUIVerifi cationHook.runTest(AutoGUIVerificationHook.java:97)&#xD; &#xA;&#x9;at
junit.framework.TestCase.runBare(TestCase.java:127)&#xD; &#xA;&#x9;at
junit.framework.TestResult$1.protect(TestResult.java:106)&am p;#xD;&#xA;&#x9;at
junit.framework.TestResult.runProtected(TestResult.java:124) &#xD;&#xA;&#x9;at
junit.framework.TestResult.run(TestResult.java:109)&#xD; &#xA;&#x9;at
junit.framework.TestCase.run(TestCase.java:118)&#xD;& ;#xA;&#x9;at
org.eclipse.hyades.test.common.junit.HyadesTestCase.run(Hyad esTestCase.java:173)&#xD;&#xA;&#x9;at
junit.framework.TestSuite.runTest(TestSuite.java:208)&#x D;&#xA;&#x9;at
org.eclipse.hyades.test.common.junit.HyadesTestSuite.runTest (HyadesTestSuite.java:428)&#xD;&#xA;&#x9;at
junit.framework.TestSuite.run(TestSuite.java:203)&#xD;&a mp;#xA;&#x9;at
org.eclipse.hyades.test.common.junit.HyadesTestSuite.doRun(H yadesTestSuite.java:396)&#xD;&#xA;&#x9;at
org.eclipse.hyades.test.common.junit.HyadesTestSuite.run(Hya desTestSuite.java:311)&#xD;&#xA;&#x9;at
org.eclipse.tptp.test.auto.gui.internal.runner.AutoGUIRunner .runVerificaitonHook(AutoGUIRunner.java:1091)&#xD;&# xA;&#x9;at
org.eclipse.tptp.test.auto.gui.internal.recorder.Verificatio nCommand.playback(VerificationCommand.java:253)&#xD;& ;#xA;&#x9;at
org.eclipse.tptp.test.auto.gui.internal.recorder.MacroComman dShell$4.run(MacroCommandShell.java:1176)&#xD;&#xA;& amp;#x9;at
org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:3 5)&#xD;&#xA;&#x9;at
org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchr onizer.java:123)&#xD;&#xA;&#x9;at
org.eclipse.swt.widgets.Display.runAsyncMessages(Display.jav a:3262)&#xD;&#xA;&#x9;at
org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2908)&#xD;&#xA;&#x9;at
org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.jav a:1762)&#xD;&#xA;&#x9;at
org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1726) &#xD;&#xA;&#x9;at
org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:397)&#xD;&#xA;&#x9;at
org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:143)&#xD;&#xA;&#x9;at
org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplicatio n.java:106)&#xD;&#xA;&#x9;at
org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.java:109)&#xD;&#xA;&#x9;at
org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher .runApplication(EclipseAppLauncher.java:92)&#xD;&#xA ;&#x9;at
org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher .start(EclipseAppLauncher.java:68)&#xD;&#xA;&#x9 ;at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:379)&#xD;&#xA;&#x9;at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:177)&#xD;&#xA;&#x9;at
sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)&#xD;&#xA;&#x9;at
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown
Source)&#xD;&#xA;&#x9;at
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source)&#xD;&#xA;&#x9;at java.lang.reflect.Method.invoke(Unknown
Source)&#xD;&#xA;&#x9;at
org.eclipse.core.launcher.Main.invokeFramework(Main.java:338 )&#xD;&#xA;&#x9;at
org.eclipse.core.launcher.Main.basicRun(Main.java:282)&# xD;&#xA;&#x9;at
org.eclipse.core.launcher.Main.run(Main.java:977)&#xD;&a mp;#xA;&#x9;at
org.eclipse.core.launcher.Main.main(Main.java:952)&#xD;& amp;#xA; "
verdict="fail" reason="seeDescription"/>
<executionEvents xsi:type="Common_Testprofile:TPFTypedEvent"
ownerId="E36787C12DEE9F258E86A7508F3C11DA" timestamp="1140620580835"
type="stop">
<interactionFragment
xsi:type="Common_Behavior_Interactions:BVRExecutionOccurrence "
href=" test-resources/EclipseTests.testsuite#E36787C12DEE9F258E86A7 508F3C11DA "/>
</executionEvents>
</executionHistory>
<test xsi:type="Common_Testprofile:TPFTestCase"
href=" test-resources/EclipseTests.testsuite#E36787C12DEE9F2561C215 108F3C11DA "/>
</invokedExecutionResult>
</executionEvents>
<executionEvents xsi:type="Common_Testprofile:TPFInvocationEvent"
id="DED1ABF322C1E71C56607C9091AB11DA(2)"
ownerId="DED1ABF322C1E71C56607C9091AB11DA" timestamp="1140620580835"
status="successful">
<interactionFragment
xsi:type="Common_Behavior_Interactions:BVRExecutionOccurrence "
href=" test-resources/EclipseTests.testsuite#DED1ABF322C1E71C56607C 9091AB11DA "/>
<invokedExecutionResult id="DED1ABF322C1E71C56607C9091AB11DA"
verdict="pass" type="org.eclipse.hyades.test.auto.gui.testSuite">
<executionHistory>
<executionEvents xsi:type="Common_Testprofile:TPFTypedEvent"
ownerId="DED1ABF322C1E71C56607C9091AB11DA" timestamp="1140620580835">
<interactionFragment
xsi:type="Common_Behavior_Interactions:BVRExecutionOccurrence "
href=" test-resources/EclipseTests.testsuite#DED1ABF322C1E71C56607C 9091AB11DA "/>
</executionEvents>
<executionEvents xsi:type="Common_Testprofile:TPFVerdictEvent"
id="DED1ABF322C1E71C56607C9091AB11DA(2)_verdict"
ownerId="DED1ABF322C1E71C1A23310091AB11DA(1)" timestamp="1140620582127"
verdict="pass"/>
<executionEvents xsi:type="Common_Testprofile:TPFTypedEvent"
ownerId="DED1ABF322C1E71C56607C9091AB11DA" timestamp="1140620582127"
type="stop">
<interactionFragment
xsi:type="Common_Behavior_Interactions:BVRExecutionOccurrence "
href=" test-resources/EclipseTests.testsuite#DED1ABF322C1E71C56607C 9091AB11DA "/>
</executionEvents>
</executionHistory>
<test xsi:type="Common_Testprofile:TPFTestCase"
href=" test-resources/EclipseTests.testsuite#DED1ABF322C1E71C1A2331 0091AB11DA "/>
</invokedExecutionResult>
</executionEvents>
<executionEvents xsi:type="Common_Testprofile:TPFVerdictEvent"
ownerId="E36787C12DEE9F254965F7C08F3C11DA(1)" timestamp="1140620582127"
verdict="fail"/>
<executionEvents xsi:type="Common_Testprofile:TPFTypedEvent"
timestamp="1140620582127" type="stop"/>
</executionHistory>
<test xsi:type="Common_Testprofile:TPFTestSuite"
href=" test-resources/EclipseTests.testsuite#E36787C12DEE9F254965F7 C08F3C11DA "/>
</Common_Testprofile:TPFExecutionResult>
Re: Parsing TPTP test execution results [message #55565 is a reply to message #55510] Tue, 28 February 2006 19:30 Go to previous message
Marius Slavescu is currently offline Marius SlavescuFriend
Messages: 67
Registered: July 2009
Member
This is a multi-part message in MIME format.
--------------060100060501030100010501
Content-Type: text/plain; charset=ISO-8859-15; format=flowed
Content-Transfer-Encoding: 7bit

Hi Tom,

Please try the attached files, unzip the test-resource.zip into a folder
and then run LoadExecutionResults by passing the path to the
EclipseTests.execution as an argument.

You should see all the values that you see in the snippets that you
provided in the previous message. For example search for "Test debug
perspective_behavior" in both testsuite snippet and the console output.

--Marius

--------------060100060501030100010501
Content-Type: text/java;
name="LoadExecutionResults.java"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="LoadExecutionResults.java"

package org.eclipse.hyades.use.cases.junit.models.test.utils;

import java.io.File;

import org.eclipse.emf.common.util.TreeIterator;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.hyades.models.common.facades.behavioral.impl.Exe cutionFacadeResourceFactoryImpl;
import org.eclipse.hyades.models.common.facades.behavioral.impl.Fac adeResourceFactoryImpl;
import org.eclipse.hyades.models.common.testprofile.Common_Testprof ilePackage;
import org.eclipse.hyades.models.common.testprofile.TPFExecutionRes ult;
import org.eclipse.hyades.models.common.util.ICommonConstants;

public class LoadExecutionResults {
public static void main(String[] args) {
if(args.length==0)
{
System.out.println("Usage: java LoadExecutionResults <path_to_execution_file>");
return;
}
File executionFile = new File(args[0]);
Common_TestprofilePackage profilePackage = Common_TestprofilePackage.eINSTANCE;
URI executionResourceURI = URI.createFileURI(executionFile.getAbsolutePath());
ResourceSet resourceSet = new ResourceSetImpl();
Resource.Factory.Registry.INSTANCE.getExtensionToFactoryMap( ).put(ICommonConstants.TEST_SUITE_FILE_EXTENSION,
new FacadeResourceFactoryImpl());
Resource.Factory.Registry.INSTANCE.getExtensionToFactoryMap( ).put(ICommonConstants.DEPLOYMENT_FILE_EXTENSION,
new FacadeResourceFactoryImpl());
Resource.Factory.Registry.INSTANCE.getExtensionToFactoryMap( ).put(ICommonConstants.EXECUTION_FILE_EXTENSION,
new ExecutionFacadeResourceFactoryImpl());

Resource resource = resourceSet.getResource(executionResourceURI, true);
TreeIterator treeIterator = resource.getAllContents();
URI testsuiteResourceURI =null;
while (treeIterator.hasNext()) {
EObject element = (EObject) treeIterator.next();
if(element instanceof TPFExecutionResult)
{
testsuiteResourceURI = EcoreUtil.getURI(((TPFExecutionResult)element).getTest()).tr imFragment();
}
System.out.println("executionResource: "+element);
}
resource = resourceSet.getResource(testsuiteResourceURI, true);
treeIterator = resource.getAllContents();
while (treeIterator.hasNext()) {
EObject element = (EObject) treeIterator.next();
System.out.println("testsuiteResource: "+element);
}
}
}

--------------060100060501030100010501
Content-Type: application/x-zip-compressed;
name="test-resources.zip "
Content-Transfer-Encoding: base64
Content-Disposition: inline;
filename="test-resources.zip "

UEsDBAoAAAAAABtZXDTUzDMeYwYAAGMGAAAlAAAAdGVzdC1yZXNvdXJjZXMv RWNsaXBzZVRl
c3RzLnRlc3RzdWl0ZVBLAwQUAAAACAATWVw0YB+4geEFAACmIAAAEAAAAFJl c291cmNlQ29u
dGVudHPtWutP20gQ/37S/Q8+I/Glil8hDwi0Co7T5q6lHAQ4qarQ4mySpbY3 510n9Hr87zdr
bxzHsZNAH6p0ESKx17Pz/M3MjuH41YPvKVMcMkKDE9XUDFXBgUsHJBidqFf9 bqWpvnr56y/H
NvV9Gtz2MeOTkA6Jh4/6511xexkRjpUHnxylbCzBBhgH7AjWT9Qx55MjXZ/N Zhr1RxoNR/pf
73opCVsmmVVjCsswTCB7e+mOsY8qJGAcBS6e75IKneIxmhIa3vYCjkPkclCA LbHDrkcmDMc8
x5/RADPdpwPsMd2NWeh3koVOMiw0UDwnKmP70wTwxcaELRmcqE613mg2bNPq OM5h16odHNZr
3YZtNLtV2zQ7bVUBRm5IJjx26SX1sTLxEAkUJ5GnvL7qKYI1U4Y0jK8gaIqQ iYJBxSMBVnTF
R1McKB6KAncMjzVVCZAP+ksmwiYGCsXO5QRJ960q17S6tbY5V07JE9RNu2ZZ tXKCZtXoWu3u
gqDjdMz2abdqWbbpNEzbbFv1qnNgHsJqYj//PAFFwauphxPvasJUDUWcaqOI xHcxBlVlIgDI
OAAY98DFb2LyLnLh6wIzGoUAHwCzcjwHEysJxbK1quKRIRYOLaQ9aNgHmbC5 HmKsH+u+Mcb6
dtrUDcvJSJARtN/2zi+d25v3F3+cOmf2m6dwM/PcroCTfXVx4Zz1MxwBGARQ 4V0jLwIiHkZ4
Kyl5OKzzoKS1vp8H89j7egmbwbuwt4TWWtA+XZt5yVoH31XAZFL+ds5BVUKZ GScqlA7IJjeA
UhNowcjXKOa+Bik2pvQT0+T+axySIXGTUgGG0uTyRNUFeYWIfNRZ6MaZpgjP pVU1WYG1uXdK
MZrLqcSAW4a94Vu5dV60ICRbZLCeis6o0w3RCEyFAgot6CgpN+vaytHp9YXz gN1I3L133SgM
cdyRCkHnNOvtRm3FCOF+KO130SguVxMMvKdYqYA5U+lKVaF8jMO5DqUpY/xA 8/IortXrRsM+
NBYozph3j6Zoe+tKEmTBWlp3rOegdJy27vhOAM9GrLwkWWbNLOuv68PzjGYk dV6bqStxXKvE
ImeLoj1f25hdq/X2qdm1Ut31jPCvBOA7zBgaYScYFKcVyK63m92FyxaiQbif 7Gb60iqcvcCN
nJQ7BKrF4UoU4Aw7TfpeNuxxWERR7IiL8wxGniN0pQ+bqdB9j7d85IY0PZ7v /x1R3jI0M7lQ
Xu7vPXRa8NFugURBz8bY84S8hCKrN2gchyZAnnZDw093kNvjGxIM6EyyCzGP wqACh38s91ek
pGVBUpY8aCaZkdABgsAXkp1LQdwD782VASRETD6bkcEILx4J0pDcxX1Qzyk9 P4+f4dkN+QeF
g3fAx/gXfkp0S7SbIChePC9IHMGTK71g35qNAZ6V7RObdOmMwodrgnI/RC7W ZrFdWmJeB45b
dFQakrKIPDMoiejiqGQVZTOuJY+ZdhpxToO9L1/Mx8cKfGrG42OJc2LfxPZv C6EZInydpwu2
TDMHkhIzpwTP9PIsvibz8C6OM1KJ5TNNGhZ5ZJrD98nnJslIEGSt+Byr0ycc xus/c4nQE1qe
o5C31jj723h0l8e7PP7KPN5BaAehHYR2EPruEFqiKaYQi/FJOrO4NLPoRUNL OmTlx04lP3jq
6eRZMIcWTLfVqmlkBufyOTQ/R3+jMXTjwC11aAM7H3E8iF81C42eOYJufgW2 aQTd+MLtO46g
JbKrqeynj6AlLA/yDikeQe8HXNSy3wEdW8+fJRJreYn/y/lzmyYBFWof+ZOW +O1C4a+kd0AW
X+89HLbaHn9xOSZD/uJsQXCO3E8Aibi+GVrz8RG+oOVYcqEuFsSrdXlvinuz nr1jGBoJ4jSU
i5ZYTPnbotMtnuw62VadbEjdFA/FjawygajpZ2LqigOYKHIOV89qceYGDxfo 6NMBDIU/RMk+
sN7b4MXfPtiddr/9wbSqHz+WEZXG/Ocx09rOzKplflMzf8bj909wYjrWV//A vvTPBS//A1BL
AQIUABQAAAAIABNZXDRgH7iB4QUAAKYgAAAQAAAAAAAAAAEAIAC2gQAAAABS ZXNvdXJjZUNv
bnRlbnRzUEsFBgAAAAABAAEAPgAAAA8GAAAAAFBLAwQKAAAAAACXXVw0AAAA AAAAAAAAAAAA
DwAAAHRlc3QtcmVzb3VyY2VzL1BLAwQUAAIACAAvWVw0G+BWkK0GAACoBgAA FgAAAEVjbGlw
c2VUZXN0cy5leGVjdXRpb24BqAZX+VBLAwQUAAAACAAuWVw03jWHFiYGAABx IAAAEAAAAFJl
c291cmNlQ29udGVudHPtWdty2zYQfe9M/4HDZDrMQyiSuit2MrIujWbsNuNL 0rcMRMIUY5Jg
CVCy+/VdAJTMm0xdnMbt1A/ycAGeXew5WECrkw/3ga8scUw9Ep6qpm6oCg5t 4nihe6reXE/f
9tQP73/+6WREgoCEX68xZVFMbj0fD64/TSf32E4YvHqJaeIz5T7wBhswi4MB fEgHYD9VF4xF
g0ZjtVrpJHB1EruNPy5mmyk0P2XVFDMswzBh2vmVvcABeuuFlKHQxuu30rDO 8AItPRJ/nYUM
x8jmIdEcHLZ9L6JYYC4ekINpIyAO9mnDFhCNeQrR8DIQOgRecJXJwH4O2OOL EtZzTtVJs9Pt
dUemNZ5M+lOr3ep32tPuyOhNmyPTHA9VJUQBOJpIdO6cqpwvx7PZqXqLPF9V 2EMEU8DxJggZ
gM5d6ihhRHcTTzxdJR7DKhCqnOA1dx89ykj8wI1KxjxZ4pBRBXgZSAfVEriG MUfMhUC8AAZR
EIGSzJbRsYx2t2d1TLVxIPgsXBIbbV6ozllv0usMu+1NzjTzjaqQVYjj2Q6z n4haAStLQEc0
sW1M6W3iq3IhsJSMTKYxcgMIr7ycSl0Ozj5fbjbO77adxDEWkl7E+PZU5TS9 jTElSQxOG1nm
BYWUU/iqdlmNTKRLcgccFfbqLql8HqnJvy2CKw4eILvn4DobzL+JXRFto5C9 ozL7WTK+34b7
murkCTI65sgy22Z+m1bw0TMMqwUj+B5U9y0JPabfxlAEVyS+0yHkCMUeBVpA j0mMB8qXmISu
4uB54ipLD68Ak/lYwfcRthl2Br/47J2u6++VecKUFaJrg/v+l1f343fwMeQf /XeIKUV3Q0px
DLoW/yZ/JsinWmr7hpZo0DPflEGg3gOVdkhANXroBjrBLNBhVywIuaN6Sjmk 2bv1ZHGj+pI/
PYz5Iq55+FrlLOGz1anwSZNQB335sGT9N5i9xBeYLYgzFIWLxLMg8nVZCAxN TlDkjOPAtJvw
LgTKlSsh6BqwMfaxC4ChewQgT4Luo9DdwEqwnQGy1YtFLCrULrH1Q+TrcRKC lPUhDPx6M8sy
8RGI5MN852jbxgVZ/W7VCgoq4zAjBNEA5BmKsbYxCAzT2hVEVvbXpg7bGRTI tEdjCmVUiWc7
FI/ok8TCThnNau2NVhFSf88UFdNj9mpIzh5R8jKmS/yPYiCHXTBJD93mjiGK M2+jjEeLgLGM
Zwg076FolwXCqvLzZLjlUKtWfFCoDrnMpTXjpdmvUuOhCdniw6wq0YeVgEv5 BMb1ZveY3Oxa
fsZa2Ee5xjaJHQDLFhZ+YqPQ0SMfPcyRfadVDUoG23UM7uT8AtkxSYGvFtj3 X7dErkv29V7s
1lFKV0xfeY6L4cLD04XmPj4ntqinWs4g+WvvgXf1ENoLuA54f0mahhQMF3DE IBdTLTeaFrC6
JGXRxx7leS8DrwdkwFbHOgQUI2cYOvwRMXuRx7T6taUjy94X2N9zuHQueKji HndOSKQ9mtOq
VhvoVtCbWRnNqmO+Gs2GlTMMSwfuN9YierPyHC2Af/IRuyVxcDPbApqZIGNu 1dGfDdlzsD4b
T4ZR5KcbTki2YHrimM0Cw/bCuTLDL8KbFQzhq8QSwXckOMq5j5L9qaOz5GaN vnGHHBRxkPSO
CeGfowQSlG6ax9VoFTPktaZOOXs7hi8BMdvqr1Mn/5y/gpsrDi3XphVMUlzd vdK4J7rZrZLu
//f1w+7rggl/rY0L5IUpzHR9sdGEURLb3Ek2ebg5op59KY64NY7V20nueZw4 B9GvVEENRAAf
WYx2NoxSawZKHuVtV4rxGFM79iK+hQudgh/XZukZvWZ73UCijET/1ZZLZqjU 6Drh/uqTnn77
OG4BxX5LpiPYqG4Jpk3a6qU9T+92PBmbw7Np07JG5qRrjtqdjtEd9eGqPDwT TSEr27utm/2U
0F5w77Z2WTv1buuTsykQEaL0pfduj+D6ZRWS3dkV0X7n3u0OG66id1t8yxxa zaZpPL61rXdr
mVa3KLzvcAIdJhYZ3Is9gZ5NOD/qBKpTzT99AuV3w9brS/E3113FLa5dh/6y WfOzaVmrwlE1
s7tzKuv6UdeK0i/UPLCTRrXPMr1/A1BLAQIUABQAAAAIAC5ZXDTeNYcWJgYA AHEgAAAQAAAA
AAAAAAEAIAC2gQAAAABSZXNvdXJjZUNvbnRlbnRzUEsFBgAAAAABAAEAPgAA AFQGAAAAAFBL
AQIUAAoAAAAAABtZXDTUzDMeYwYAAGMGAAAlAAAAAAAAAAAAIAC2gQAAAAB0 ZXN0LXJlc291
cmNlcy9FY2xpcHNlVGVzdHMudGVzdHN1aXRlUEsBAhQACgAAAAAAl11cNAAA AAAAAAAAAAAA
AA8AAAAAAAAAAAAQAP9BpgYAAHRlc3QtcmVzb3VyY2VzL1BLAQIUABQAAgAI AC9ZXDQb4FaQ
rQYAAKgGAAAWAAAAAAAAAAAAIAAAANMGAABFY2xpcHNlVGVzdHMuZXhlY3V0 aW9uUEsFBgAA
AAADAAMA1AAAALQNAAAAAA==
--------------060100060501030100010501--
Previous Topic:NullPointerException when trying to view Coverage Statistics
Next Topic:AGR versus eclipse macros
Goto Forum:
  


Current Time: Thu Apr 18 14:04:36 GMT 2024

Powered by FUDForum. Page generated in 0.02898 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top