Re: Code Coverage

2013-03-15 Thread Colin Alworth
project. On Thursday, March 7, 2013 11:01:37 AM UTC-6, darkling wrote: Does anyone have any recent experience working with a code coverage tool and GWT? I heard that emma worked so I downloaded the eclipse emma plugin and gave it a whirl. The problem is it only seems to tell me that no line of mine

Re: Code Coverage

2013-03-13 Thread darkling
working with a code coverage tool and GWT? I heard that emma worked so I downloaded the eclipse emma plugin and gave it a whirl. The problem is it only seems to tell me that no line of mine was ever touched. I tried running it on my nonGWT code and it seems to work fine. But GWT gives me

Re: Code Coverage

2013-03-08 Thread Colin Alworth
:37 AM UTC-6, darkling wrote: Does anyone have any recent experience working with a code coverage tool and GWT? I heard that emma worked so I downloaded the eclipse emma plugin and gave it a whirl. The problem is it only seems to tell me that no line of mine was ever touched. I tried running

Code Coverage

2013-03-07 Thread darkling
Does anyone have any recent experience working with a code coverage tool and GWT? I heard that emma worked so I downloaded the eclipse emma plugin and gave it a whirl. The problem is it only seems to tell me that no line of mine was ever touched. I tried running it on my nonGWT code

Re: Code Coverage

2013-03-07 Thread Jens
Have you used the patched GWT emma version? Take a look at: https://developers.google.com/web-toolkit/doc/latest/DevGuideTestingCoverage -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

Re: Code Coverage

2013-03-07 Thread darkling
I did but it didn't work for me. Did it work for you? Thanks On Thursday, March 7, 2013 12:07:33 PM UTC-5, Jens wrote: Have you used the patched GWT emma version? Take a look at: https://developers.google.com/web-toolkit/doc/latest/DevGuideTestingCoverage -- J. -- You received this

Re: Code Coverage

2013-03-07 Thread Thomas Broyer
JBoss has a jacoco-gwt-maven-plugin but I haven't tried it. On Thursday, March 7, 2013 6:01:37 PM UTC+1, darkling wrote: Does anyone have any recent experience working with a code coverage tool and GWT? I heard that emma worked so I downloaded the eclipse emma plugin and gave it a whirl

[gwt-contrib] Re: Add instrumentation for collecting client-side code coverage. (issue1764803)

2012-07-13 Thread skybrian
LGTM http://gwt-code-reviews.appspot.com/1764803/diff/6003/dev/core/src/com/google/gwt/dev/js/BaselineCoverageGatherer.java File dev/core/src/com/google/gwt/dev/js/BaselineCoverageGatherer.java (right):

[gwt-contrib] Re: Add instrumentation for collecting client-side code coverage. (issue1764803)

2012-07-13 Thread isbadawi
On 2012/07/14 00:31:23, skybrian wrote: LGTM http://gwt-code-reviews.appspot.com/1764803/diff/6003/dev/core/src/com/google/gwt/dev/js/BaselineCoverageGatherer.java File dev/core/src/com/google/gwt/dev/js/BaselineCoverageGatherer.java (right):

[gwt-contrib] Re: Add instrumentation for collecting client-side code coverage. (issue1764803)

2012-07-12 Thread isbadawi
http://gwt-code-reviews.appspot.com/1764803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add instrumentation for collecting client-side code coverage. (issue1764803)

2012-07-02 Thread isbadawi
http://gwt-code-reviews.appspot.com/1764803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add instrumentation for collecting client-side code coverage. (issue1764803)

2012-07-02 Thread isbadawi
http://gwt-code-reviews.appspot.com/1764803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add instrumentation for collecting client-side code coverage. (issue1764803)

2012-06-29 Thread Ray Cromwell
Sorry I've been at I/O all week, I will take a look at this as soon as I can. On Thu, Jun 28, 2012 at 5:30 PM, isbad...@google.com wrote: http://gwt-code-reviews.**appspot.com/1764803/http://gwt-code-reviews.appspot.com/1764803/ --

[gwt-contrib] Add instrumentation for collecting client-side code coverage. (issue1764803)

2012-06-28 Thread isbadawi
Reviewers: cromwellian, Description: Add instrumentation for collecting client-side code coverage. Please review this at http://gwt-code-reviews.appspot.com/1764803/ Affected files: M dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java A dev/core/src/com/google/gwt/dev/js

[gwt-contrib] Re: Add instrumentation for collecting client-side code coverage. (issue1764803)

2012-06-28 Thread isbadawi
http://gwt-code-reviews.appspot.com/1764803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: Code Coverage : How to configure cobertura and selenium with Gwt Client project for code coverage

2012-03-29 Thread Joseph Lust
Dodo, We get around that by setting unique id's on elements using a 'debugId' for components that need to be individually tested. This helps prevent making brittle tests that depend on a very long XPath that will break if any class is renames or div moved. You can set them in the UiBinder as

Code Coverage : How to integrate selenium,cobertura with gwt client project for code coverage report.

2012-03-29 Thread Darsha Sai
Hi, I am using gwt client application. I interested in selenium automated test case in my project. I want to use cobertura for code coverage in my project with Selenium auto mated test case . How can integrate these two tools for my gwt client project ? Thanks in advance. -- You received

Re: Code Coverage : How to configure cobertura and selenium with Gwt Client project for code coverage

2012-03-28 Thread Thomas Broyer
I never used it. I know GWT can be built with EMMA enabled for the tests (ant -Demma.enabled=true), I haven't run it for a while but I believe it still works. The patch is here, with the instructions for re-building EMMA in the README.txt:

Re: Code Coverage : How to configure cobertura and selenium with Gwt Client project for code coverage

2012-03-28 Thread dodo dard
I've work with GWT and Selenium separately, But to make Selenium work, basically you have set and unique id to the component that you want to test. But then for Cobertura, I dont know -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Code Coverage : How to configure cobertura and selenium with Gwt Client project for code coverage

2012-03-28 Thread Joseph Lust
Thomas, Thanks for the tip. I'll rebuild GWT and Emma when I get home with these flags tonight. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Code Coverage : How to configure cobertura and selenium with Gwt Client project for code coverage

2012-03-27 Thread Joseph Lust
Thomas, Have you ever used the patched Emma plugin? I've got the Emma 2.1.0.201 installed while the 'patched' version is 2.0.5312. I tried swapping things out like the docs suggested to no avail. Curious if anyone else has made that work in Indigo (Ubuntu 11.10). I've long used Emma with pure

Code Coverage : How to configure cobertura and selenium with Gwt Client project for code coverage

2012-03-26 Thread Sun Raise
Hi, I am using GWT client side project. I am interesting selenium automated test case in my project. For code coverage i want to use cobertura. How to configure these 2 tools in gwt client ? Its it possible or not ? Thanks -- You received this message because you are subscribed

Re: Code Coverage : How to configure cobertura and selenium with Gwt Client project for code coverage

2012-03-26 Thread Thomas Broyer
On Monday, March 26, 2012 2:47:49 PM UTC+2, Sun Raise wrote: Hi, I am using GWT client side project. I am interesting selenium automated test case in my project. For code coverage i want to use cobertura. How to configure these 2 tools in gwt client ? Its it possible

Re: Cobertura code coverage with HtmlUnit/DevMode

2011-05-11 Thread Damien Picard
, instrumented class available, ...), the jdt generated bytecode by this one. As a matter of fact, this bytecode has to be compatible with jdt-compiled one, because it has to be executed with some jdt-compiled unit. So, the only way to make Cobertura code coverage available is to create a patch

Cobertura code coverage with HtmlUnit/DevMode

2011-05-10 Thread Damien Picard
Hi, I'm trying to generate code coverage report with Cobertura on GWTTestCases. To do that, I would like to run these tests with the standard GWTRunner with HtmlUnit. As the Cobertura documentation says, the coverture is calculated using instrumentations added to .class files in a first step

Re: Cobertura code coverage with HtmlUnit/DevMode

2011-05-10 Thread Thomas Broyer
GWT already supports EMMA for code coverage, did you look at how it works? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email

Re: Cobertura code coverage with HtmlUnit/DevMode

2011-05-10 Thread Damien Picard
already supports EMMA for code coverage, did you look at how it works? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email

Problem of collecting GWT client Code coverage

2010-09-07 Thread Qi Zhang
We are trying to use the emma library to measure the code coverage of gwt client code, our test case is driven by Selenium RC. But we observed that some event handler code is never covered although we are pretty sure the event is triggered and handled. We did some hack to GWT source code and add

Re: GWT 2.0 and EclEmma code coverage

2010-01-30 Thread Nir Feldman
I am facing the same issue exactly. On Jan 28, 10:09 am, CVdS ni...@zykov.com wrote: Hi All, Did someone manage to correctly run EclEmma code coverage with GWT 2.0? I tried it many times with Eclipse 3.5, with both EclEmma 1.3.2 and 1.4.3, both updated (with emma.jar published on the GWT

Re: Code coverage for GWT

2010-01-21 Thread Arthur Kalmenson
[mailto:davisf...@gmail.com] *On Behalf Of *Davis Ford *Sent:* Monday, November 23, 2009 8:27 PM *To:* google-web-toolkit@googlegroups.com *Subject:* Re: Code coverage for GWT I like maven-emma-plugin or maven-cobertura-plugin On Mon, Nov 23, 2009 at 9:23 AM, Nir Feldman nir.feld...@hp.com

GWTTestCase Code Coverage

2009-12-07 Thread Feldman, Nir
Can someone provide a simple tutorial of how to do set up and use EclEmma to run the tests and get the coverage report? Thanks. [cid:image001.gif@01CA7728.C61320E0] Nir Feldman Release Control RD Team Leader Hewlett-Packard Company +972-3-5399896 Phone +972-54-7213833 Cell +972-3-5331617

Code coverage for GWT

2009-11-23 Thread Nir Feldman
Hi, I want to have a code coverage for a GWT client built using maven. what plugin is the most recommended? Nir -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com

Re: Code coverage for GWT

2009-11-23 Thread Davis Ford
I like maven-emma-plugin or maven-cobertura-plugin On Mon, Nov 23, 2009 at 9:23 AM, Nir Feldman nir.feld...@hp.com wrote: Hi, I want to have a code coverage for a GWT client built using maven. what plugin is the most recommended? Nir -- You received this message because you

RE: Code coverage for GWT

2009-11-23 Thread Feldman, Nir
Do both fully support GWT (including coverage for GWTTestCase)? From: davisf...@gmail.com [mailto:davisf...@gmail.com] On Behalf Of Davis Ford Sent: Monday, November 23, 2009 8:27 PM To: google-web-toolkit@googlegroups.com Subject: Re: Code coverage for GWT I like maven-emma-plugin or maven

[gwt-contrib] [google-web-toolkit] r5887 committed - This patch adds emma code coverage statistics to the output of an ant ...

2009-08-05 Thread codesite-noreply
Revision: 5887 Author: jlaba...@google.com Date: Wed Aug 5 12:55:36 2009 Log: This patch adds emma code coverage statistics to the output of an ant test when emma.enabled is set. Patch by: jlabanca Review by: fabbott http://code.google.com/p/google-web-toolkit/source/detail?r=5887 Modified

[gwt-contrib] [google-web-toolkit] r5781 commited - Added emma code coverage generation to the build file. ant emma test ...

2009-07-28 Thread codesite-noreply
Revision: 5781 Author: jlaba...@google.com Date: Thu Jul 23 13:49:48 2009 Log: Added emma code coverage generation to the build file. ant emma test emma.merge will generate emma reports for each test, then merge them. Patch by: jlabanca Review by: fabbott http://code.google.com/p/google-web

[gwt-contrib] [google-web-toolkit] r5798 commited - Added emma code coverage generation to the build file. ant emma test ...

2009-07-28 Thread codesite-noreply
Revision: 5798 Author: jlaba...@google.com Date: Sun Jul 26 14:05:25 2009 Log: Added emma code coverage generation to the build file. ant emma test emma.merge will generate emma reports for each test, then merge them. This is a resubmit of r5781 after verifying all remoteweb tests pass

[gwt-contrib] Add emma code coverage output to GWT build files

2009-07-20 Thread jlabanca
Reviewers: fabbott, Description: Description: === This patch adds emma code coverage statistics to the output of an ant test. In order to add emma stats, use the following command (copied from emma's user guide): ant emma test Where 'emma' sets a property that enabled emma

Re: Clover code coverage

2009-07-16 Thread Arthur Kalmenson
Is no one using Clover? -- Arthur Kalmenson On Tue, Jul 7, 2009 at 9:50 AM, Arthur Kalmensonarthur.k...@gmail.com wrote: Hello everyone, We're currently using Clover for our code coverage tool and I've been wanting to get code coverage from GWTTestCases. We try to avoid using GWTTestCase

Clover code coverage

2009-07-07 Thread Arthur Kalmenson
Hello everyone, We're currently using Clover for our code coverage tool and I've been wanting to get code coverage from GWTTestCases. We try to avoid using GWTTestCase and mainly focus on unit testing with TestNG, however, to ensure GIN injections work we need to use GWTTestCase. Has anyone

Re: Code Coverage with EclEmma

2009-02-06 Thread Sumit Chandel
issues running code coverage reports. Some improvements have been added even past the 1.6 milestone, so if you would like to give Emma support another try to see how it's shaping up, you should build from the latest in trunk and run with that. As far as I know, you should still be able to use Ant

Code Coverage with EclEmma

2009-02-03 Thread Matt Raible
I'm trying to get code coverage support for my GWT project. AFAICT, I can't use anything from Maven or Ant, I have to use the EclEmma plugin as described in the following issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=779 I'm using Eclipse 3.3 with the latest version