• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Testing - diff cases

 
Ranch Hand
Posts: 174
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Is there any open source software available which I can probably use to automate my testing process ?

I am mainly involved in Java Based Projects. However, consider the situation where I am using a particular file called ABC.TXT which is present in all the projects.. with different parameters based on the project.

But the requirement is that a particular format has to be followed ---

NAME: abcd

Note the space after the colon.

I want to run such automated tests which can identify if there are any such problems. However, don't want to restrict myself to just formatting checks.

Any pointers ?

Regards,
Arijit

my requirements also involve testing situations like "Is there
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Arijit Ghosh:
Is there any open source software available which I can probably use to automate my testing process ?

...

I want to run such automated tests which can identify if there are any such problems. However, don't want to restrict myself to just formatting checks.


What language do you want to write your tests in? If Java is ok, then I'd recommend using JUnit as it has plenty of extensions and an industry-wide support in IDE's.

Originally posted by Arijit Ghosh:
...

my requirements also involve testing situations like "Is there

Was this supposed to be there?
 
Arijit Ghosh
Ranch Hand
Posts: 174
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry no that was not supposed to be there..

But can JUnit be used to satisfy my requirements ?

Regards,
Arijit
 
Lasse Koskela
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Arijit Ghosh:
But can JUnit be used to satisfy my requirements ?


Yes, JUnit can be used to satisfy the requirements you listed. Basically, you can do pretty much anything that can be done with Java when using JUnit -- you're writing Java code!
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic