• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

TestNG

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Has anyone used TestNG?
TestNG is designed to cover all categories of tests: unit, functional, end-to-end, integration, etc...
Does any has done the end-to-end testing usingTestNG?
 
author
Posts: 14112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Didn't yet feel the need to try it. For developer testing, I'm quite happy with JUnit; for acceptance testing, I prefer something that looks more like something business people can understand, for example FIT/FitNesse.
 
author & internet detective
Posts: 42145
937
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Umesh,
I'm in the same boat as Ilja. I am happy with JUnit for unit and integration tests. For end to end GUI tests, I prefer to use a browser based tool. For end to end back end tests (like file processing), I am also happy with JUnit.

TestNG has a couple "features" that scare me, like test dependencies. I don't want the ability to do that! While I'm sure it's possible to use this in a good way, I view it as giving you rope to hang yourself. Most of the other features seem like they have the potential to be useful, but don't address a need we have at the moment.
reply
    Bookmark Topic Watch Topic
  • New Topic