February 27, 2006Announcing TestNG 4.6
@Test(description = "Verify that the server is up") Download TestNG at http://testng.org. Posted by cedric at February 27, 2006 09:32 AM Comments
This probably isn't very critical, but the plugin no longer works in Eclipse 3.2M5... This is the error: java.lang.NoClassDefFoundError: org/eclipse/jdt/internal/junit/ui/TabFolderLayout (I can totally imagine this isn't important to fix, just thought I would point it out) Willem Posted by: Willem Verstraeten at February 27, 2006 10:46 AMHi Willem, Yes, we're aware of this, there is a bug filed in JIRA to that effect. We are waiting for the 3.2 API to freeze before we port the plug-in there, which was supposed to happen in M6 but might actually have happened in M5, so we'll be addressing this bug very soon... Thanks for including multithreaded testing feature! hi all, I apologize for asking a forum question over here. "Thanks for including multithreaded testing feature!" thank you, BR, Hi Cedric, perhaps I'm an especially stupid user, but for months I'm unable to switch to TestNG because I can|t find a download link for the IDEA plugin on javaforge, bye Solved, I used the IDEA plugin manager. stupid me. Posted by: Stephan Schmidt at March 1, 2006 12:28 AMSomehow google doesn't find anything usefull for TestNG and jMock, are the mocks evaluated after a test? how can I do this? Thanks. Posted by: Stephan Schmidt at March 1, 2006 02:41 AMhi cedric, i think your example for description is not very compelling. how about or even better as this simply can not be expressed naturally in a java method name. ciao robertj Posted by: robertj at March 1, 2006 07:31 AMAre you getting these updated libraries into the central Maven 2 repository? Alternately, can you set up a repository for TestNG (and other toys)? It easy enough to change settings.xml to point to additional repositories. Posted by: Howard M. Lewis Ship at March 2, 2006 05:48 PMAre you getting these updated libraries into the central Maven 2 repository? Alternately, can you set up a repository for TestNG (and other toys)? It easy enough to change settings.xml to point to additional repositories. Posted by: Howard M. Lewis Ship at March 2, 2006 05:48 PMOh my god, no plugin for NetBeans 5.0? Posted by: pcdinh at March 14, 2006 07:26 PMHi Cedric: Congratulations on the release. I was interested in using the distributed testng features. When is the distributed testng work expected to be completed? Thanks. varun. Posted by: Varun Rupela at March 23, 2006 09:53 PM> jMock, are the mocks evaluated after a test? Stephan, normally, jmock calls "verify" on all your mocks in the teardown method. However, you can call verify manually at the end of every test. This could be a big change if you've got a lot of jmock tests. Example: Mock mockGui = mock(IGuiController.class); There may be a better way to accomplish this with TestNG, but I don't know it well enough. You would also need a way to access a list of all mocks created in a test, which JMock must be doing internally, so that you can call "verify" on all of them. Posted by: Jean at June 16, 2006 08:29 AMI have posted about TestNG and JMock: http://themindstorms.blogspot.com/2006/08/more-on-jmock-and-testng.html. And I am doing some work on this direction. ./alex Post a comment
|