<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Flexcover 0.50 released on Google Code</title>
	<atom:link href="http://joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/feed/" rel="self" type="application/rss+xml" />
	<link>http://joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Wed, 19 Nov 2008 01:57:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: James Setaro</title>
		<link>http://joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/#comment-242</link>
		<dc:creator>James Setaro</dc:creator>
		<pubDate>Thu, 14 Aug 2008 15:05:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/#comment-242</guid>
		<description>This looks like just what the doctor ordered. I am going to show this some developers we have using flex, thanks for the post.</description>
		<content:encoded><![CDATA[<p>This looks like just what the doctor ordered. I am going to show this some developers we have using flex, thanks for the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Code Coverage for ASUnit &#171; ActionScribe</title>
		<link>http://joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/#comment-239</link>
		<dc:creator>Code Coverage for ASUnit &#171; ActionScribe</dc:creator>
		<pubDate>Tue, 12 Aug 2008 05:57:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/#comment-239</guid>
		<description>[...] (of Adobe Consulting) and Joe Berkovitz haven&#8217;t been resting on their laurels. With the release of FlexCover 0.50 a few months ago the Flash world finally has a decent code coverage tool. I&#8217;ve been using it [...]</description>
		<content:encoded><![CDATA[<p>[...] (of Adobe Consulting) and Joe Berkovitz haven&#8217;t been resting on their laurels. With the release of FlexCover 0.50 a few months ago the Flash world finally has a decent code coverage tool. I&#8217;ve been using it [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joe</title>
		<link>http://joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/#comment-240</link>
		<dc:creator>joe</dc:creator>
		<pubDate>Thu, 12 Jun 2008 15:05:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/#comment-240</guid>
		<description>Yes, it is possible to automate tests like this offline with flexcover-0.50 -- it is a very important capability.  In order to do so, you need to do the following:

1. start the CoverageViewer app from Ant and pass the .cvm file on the command line, plus the -output option to specify the .cvr file to which the report will be written.

2. have the unit tests call CoverageManager.exit() when they are done, rather than System.exit() or fscommand("quit").  This ensures that all coverage data is flushed correctly before the program terminates.</description>
		<content:encoded><![CDATA[<p>Yes, it is possible to automate tests like this offline with flexcover-0.50 &#8212; it is a very important capability.  In order to do so, you need to do the following:</p>
<p>1. start the CoverageViewer app from Ant and pass the .cvm file on the command line, plus the -output option to specify the .cvr file to which the report will be written.</p>
<p>2. have the unit tests call CoverageManager.exit() when they are done, rather than System.exit() or fscommand(&#8221;quit&#8221;).  This ensures that all coverage data is flushed correctly before the program terminates.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julian Payne</title>
		<link>http://joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/#comment-237</link>
		<dc:creator>Julian Payne</dc:creator>
		<pubDate>Thu, 12 Jun 2008 14:55:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/#comment-237</guid>
		<description>Joe,

I will certainly test any online publication system when you have it.

For your second point, what I am trying to do is to run the unit tests during my nightly builds (using a system similar to antennae by running the flash player and communicating the results via sockets). Is it possible to run the unit tests "offline" like this and save the results so that they can then be displayed in my maven site?

Thanks,

Julian</description>
		<content:encoded><![CDATA[<p>Joe,</p>
<p>I will certainly test any online publication system when you have it.</p>
<p>For your second point, what I am trying to do is to run the unit tests during my nightly builds (using a system similar to antennae by running the flash player and communicating the results via sockets). Is it possible to run the unit tests &#8220;offline&#8221; like this and save the results so that they can then be displayed in my maven site?</p>
<p>Thanks,</p>
<p>Julian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joe</title>
		<link>http://joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/#comment-238</link>
		<dc:creator>joe</dc:creator>
		<pubDate>Thu, 12 Jun 2008 14:44:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/#comment-238</guid>
		<description>Hi Julian --

#1: We are thinking about how to best publish results online, and I see your point about the SWF.  It's a great idea and I'll look into it.

#2: when you open a .cvm file, all percentages will always be at 0% because you have not captured any data yet.  Once the coverage viewer is open on a .cvm, you can run the instrumented program and flexcover will collect the coverage data from it.  At that point you will see the percentages change on the fly.</description>
		<content:encoded><![CDATA[<p>Hi Julian &#8211;</p>
<p>#1: We are thinking about how to best publish results online, and I see your point about the SWF.  It&#8217;s a great idea and I&#8217;ll look into it.</p>
<p>#2: when you open a .cvm file, all percentages will always be at 0% because you have not captured any data yet.  Once the coverage viewer is open on a .cvm, you can run the instrumented program and flexcover will collect the coverage data from it.  At that point you will see the percentages change on the fly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julian Payne</title>
		<link>http://joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/#comment-241</link>
		<dc:creator>Julian Payne</dc:creator>
		<pubDate>Thu, 12 Jun 2008 14:03:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/#comment-241</guid>
		<description>This does look cool :-)

I have 2 comments:

1. It would be great to have a SWF as well as an air application so that the results can be published in a nightly build (ala maven2)?

2. I have tried using 0.50 with my maven2 build environment and it creates a .cvm file but all the methods are at 0%, any clues why this might be?

Thanks,

Julian Payne
Visualization R&#38;D
ILOG S.A. Sophia Antipolis, France</description>
		<content:encoded><![CDATA[<p>This does look cool :-)</p>
<p>I have 2 comments:</p>
<p>1. It would be great to have a SWF as well as an air application so that the results can be published in a nightly build (ala maven2)?</p>
<p>2. I have tried using 0.50 with my maven2 build environment and it creates a .cvm file but all the methods are at 0%, any clues why this might be?</p>
<p>Thanks,</p>
<p>Julian Payne<br />
Visualization R&amp;D<br />
ILOG S.A. Sophia Antipolis, France</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan O'Connell</title>
		<link>http://joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/#comment-243</link>
		<dc:creator>Ryan O'Connell</dc:creator>
		<pubDate>Fri, 23 May 2008 20:11:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.joeberkovitz.com/blog/2008/05/22/flexcover-050-announce/#comment-243</guid>
		<description>Wow, this is a really useful tool.  Provides a nicer interface than the default profiler.  I was trying to use this on my project (its an AIR app).  I ran into this nasty byte code verification error:  (Can you help?)

verify global/vu.core.util::isNullOrEmptyString()
                        stack:
                        scope:
VerifyError: Error #1013: Cannot call OP_findproperty when scopeDepth is 0.
                         locals: global String?
  0:debugfile "/Users/oconnell/hosted-services/dev/main/concerto/website/flex/concerto2;vu/core/util;isNullOrEmptyString.as"
                        stack:
                        scope:
                         locals: global String?
  4:debugline 26
                        stack:
                        scope:
                         locals: global String?
  6:findpropstrict coverage

(Note -- this is now entered as &lt;a href="http://code.google.com/p/flexcover/issues/detail?id=8" rel="nofollow"&gt;Issue 8&lt;/a&gt; -- JB)</description>
		<content:encoded><![CDATA[<p>Wow, this is a really useful tool.  Provides a nicer interface than the default profiler.  I was trying to use this on my project (its an AIR app).  I ran into this nasty byte code verification error:  (Can you help?)</p>
<p>verify global/vu.core.util::isNullOrEmptyString()<br />
                        stack:<br />
                        scope:<br />
VerifyError: Error #1013: Cannot call OP_findproperty when scopeDepth is 0.<br />
                         locals: global String?<br />
  0:debugfile &#8220;/Users/oconnell/hosted-services/dev/main/concerto/website/flex/concerto2;vu/core/util;isNullOrEmptyString.as&#8221;<br />
                        stack:<br />
                        scope:<br />
                         locals: global String?<br />
  4:debugline 26<br />
                        stack:<br />
                        scope:<br />
                         locals: global String?<br />
  6:findpropstrict coverage</p>
<p>(Note &#8212; this is now entered as <a href="http://code.google.com/p/flexcover/issues/detail?id=8" rel="nofollow">Issue 8</a> &#8212; JB)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
