InfoQ

InfoQ

News

My Bookmarks

Login or Register to enable bookmarks for unlimited time.

The content has been bookmarked!

There was an error bookmarking this content! Please retry.

Interview and Book Excerpt: Hani Suleiman & Cedric Beust on TestNG

Posted by Scott Delap on Feb 14, 2008

Sections
Development,
Architecture & Design
Topics
Java ,
Software Testing ,
Unit Testing
Tags
TestNG
InfoQ.com recently sat down with Hani Suleiman and Cédric Beust the authors of Next Generation Java Testing: TestNG and Advanced Concepts to discuss the book and their thoughts about testing in general. InfoQ is also pleased to offer an excerpt from chapter 2 of the book, "Mocks and Stubs".
Cedric:

TestNG started as an experimental toy project. The main motivation was that despite using JUnit for years, there were still a lot of concepts and approaches used by JUnit that I didn't feel comfortable with. The more I investigated, and the more I disagreed with some of its core philosophical design decisions, such as reinstantiating your class before each method invocation (thus forcing me to use statics if I want to maintain state between invocations) or not allowing me to create dependent tests, which are crucial for functional testing.

Overall, I just found that JUnit was doing great in the area of unit testing but was lacking in other places required by any kind of functional or acceptance testing.

Back then, I was also involved in the annotations JSR and it occurred to me that annotations would be a good fit to mark test methods.

Finally, the last piece in the puzzle came from a web site with the strange name of del.icio.us that introduced this bizarre new concept of "tags". It occurred to me that it would be neat if I could tag my test methods and then be able to invoke any arbitrary group of them without having to recompile anything. I renamed these tags "groups" and I realized that they would be a great match for annotations as well.

With these ideas in mind, I set out to create TestNG 1.0 almost four years ago and I published it just for fun and to get some feedback.

Read more of InfoQ's interview with Cedrick Beust and Hani Suleiman

Free facials? by Michael Neale Posted
Mocks and Stubs by Pierre-Antoine Grégoire Posted
free chapter by serge boulay Posted
  1. Back to top

    Free facials?

    by Michael Neale

    For the first 100 copies sold? (sorry, couldn't resist).

  2. Back to top

    Mocks and Stubs

    by Pierre-Antoine Grégoire

    If you need to create Random Value Objects on the fly for your tests, consider Usurper www.org-libs.org/org-lib-usurper/ (Shameless self-publicity).

    This allows to generate a random User (for example) Value Object like this:


    UsurperGenerator<User> userGenerator = new UsurperGenerator<User>(User.class);
    //GENERATE ONE INSTANCE
    User user = userGenerator.generateUsurper();
    //GENERATE A LIST OF INSTANCES
    List<User> userList = userGenerator.generateUsurperList(3);


    There are many other features, like automatic stubbing of DAO methods. Check it out!

  3. Back to top

    free chapter

    by serge boulay

    I just read the free chapter, liked it so much that I decided to buy the book.

    Thanks

Educational Content

New-age Transactional Systems - Not Your Grandpa's OLTP

John Hugg discusses high volume transaction processing applications with high and low frequency profiles, and how VoltDB can be used for that purpose.

Cool Code

Kevlin Henney examines code samples to see what can be learned from them starting from the premise that one won’t write great code unless he knows how to read it.

Collaboration: At the Extremities of Extreme

Jason Ayers share the observations he made watching a team of developers collaborating in real time on the same code base, pushing XP, pair programming and continuous integration to their extremes.

Yesod Web Framework

Michael Snoyman presents Yesod, a web framework written in Haskell and containing a web server, templating, ORM, libraries (templating, gravatar, etc.).

Transactions without Transactions

Richard Kreuter and Kyle Banker on how to avoid classical RDBMS transactional systems by using compensation mechanisms, transactional messaging or transactional procedures.

Attila Szegedi on JVM and GC Performance Tuning at Twitter

Attila Szegedi talks about performance tuning Java and Scala programs at Twitter: how to approach GC problems, the importance of asynchronous I/O, when to use MySQL/Cassandra/Redis, and much more.

10 tips on how to prevent business value risk

One category of risk that project teams need to ensure they address is business value failure – delivering a product that fails to provide value for the business investor.

Interview: Software Systems Architecture: Working With Stakeholders Using Viewpoints and Perspectives

InfoQ spoke to the authors of Software Systems Architecture on a couple of new topics, the System Context viewpoint and Agile, which have been added to the second edition.