Home | History | Annotate | Download | only in testng
      1 javalobby.org
      2 testdriven.com
      3 opensourcetesting.org
      4 http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=forum&f=68
      5 java.net
      6 comp.lang.java.programmer
      7 
      8 ==========
      9 
     10 The TestNG team is happy to announce the immediate availability of TestNG 4.5. 
     11 
     12 This release contains a lot of bug fixes and a few new features.  It also 
     13 includes the first phase of Distributed TestNG, a work in progress designed 
     14 to transparently distribute tests on many machines and collect their results.
     15 
     16 Announcement:
     17 
     18 http://beust.com/weblog/archives/000361.html
     19 
     20 Details on Distributed TestNG:  
     21 
     22 http://beust.com/weblog/archives/000362.html
     23 
     24 
     25 ==========
     26 
     27 The TestNG team is happy to announce the immediate availability of TestNG 4.0, with a lot of improvements and new features.
     28 
     29 The announcement, along with a few examples and summary of the new features, can be found here:
     30 
     31     http://tinyurl.com/dxlbh
     32 
     33 -- 
     34 Cdric
     35 http://testng.org
     36 
     37 ================
     38 
     39 Announcing TestNG 2.3
     40 
     41 The TestNG team is happy to announce the availability of TestNG 2.3.
     42 
     43 The version is available at http://beust.com/testng as well as the new documentation, which has been considerably improved (highlighted code snippets, detailed DTD, ant task and description of all the new features).
     44 
     45 What's new:
     46 
     47     * beforeSuite, afterSuite, beforeTest, afterTest
     48     * Revamped ant task with haltonfailure and other helpful flags
     49     * Better stack traces and improved level control for verbosity
     50     * Better syntax for including and excluding methods in testng.xml
     51     * Test classes can be invoked on the command line
     52     * ... and many bug fixes.
     53 
     54 For Eclipse users, a new version (1.1.1) of the Eclipse plug-in that includes this new TestNG version is available on the remote update site or for direct download.
     55 
     56 Also, TestNG has joined OpenSymphony (big thanks to Patrick and Hani for setting this up).  As a consequence of this move, there is now a TestNG users forum as well as a Wiki and JIRA for issue tracking.
     57 
     58 The users mailing-list has been moved to Google Groups and is connected to the forum, so you only need to subscribe to one.
     59 
     60 Try it and let us know what you think!
     61 
     62 ===
     63 
     64 I am happy to announce the availability of TestNG 2.1 (http://beust.com/testng).  
     65 
     66 TestNG is a testing framework inspired from JUnit and NUnit but introducing some new functionalities that make it more powerful and easier to use, such as:
     67 
     68     * JSR 175 Annotations (JDK 1.4 is also supported with JavaDoc annotations).
     69     * Flexible test configuration.
     70     * Default JDK functions for runtime and logging (no dependencies).
     71     * Powerful execution model (no more TestSuite).
     72     * Supports dependent methods.
     73 
     74 Some of the new features in this version include:
     75 
     76     * invocationCount and successPercentage, which I described in a previous entry (http://beust.com/weblog/archives/000236.html), and which allow you to invoke a test method a certain number of times while allowing some of these invocations to fail.  If the number of failures is under a certain threshold, the test is still considered a success.
     77        
     78     * timeOut is now applicable to all test methods.  Whether you are running your tests in parallel or not, you can specify a time-out for your test method and if it fails to complete within the given amount of time, TestNG will mark it as a failure.
     79        
     80     * dependsOnMethods was the most requested feature.  You can now specify dependencies on a method-based basis (no need to specify a group if your dependency graph is simple).  You can even mix dependsOnMethods and dependsOnGroups.
     81        
     82     * ... and of course, numerous bug fixes and other additions.
     83 
     84 A special thanks to Alexandru Popescu who has pulled all-nighters to make this release happen!
     85 
     86 We have an exciting list of new features lined up for our next version, among which a plug-in API, but in the meantime, enjoy TestNG 2.1.
     87 
     88 ======
     89 
     90 Announcing TestNG for Eclipse
     91 
     92 The TestNG team is happy to announce the first release of the TestNG plug-in for Eclipse.
     93 
     94 http://beust.com/testng
     95 
     96 This first release covers the basic functionalities of TestNG, among which:
     97 
     98     * Multiple ways to launch tests (from a method, from a class, groups or an entire suite).
     99     * Convenient report view that lets you directly jump to failed tests.
    100 
    101 A more detailed overview can be found here:
    102 
    103 http://beust.com/weblog/archives/000261.html
    104 
    105 and the documentation and snapshots here:
    106 
    107 http://beust.com/testng/main.html#eclipse
    108 
    109 -- 
    110 Cedric
    111