Eclipse Plug-in for Generating and Executing Test Cases for Database Objects


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Eclipse Plug-in for Generating and Executing Test Cases for Database Objects
# 1  
Old 12-15-2008
Eclipse Plug-in for Generating and Executing Test Cases for Database Objects

An Eclipse plug-in capable of automatically generating JUnit and SQLUnit test cases for database objects. (NEW: 12/11/2008 in eclipse)

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. HP-UX

Test cases for file system mount/umount performance in HP

Hi Folks, Could anyone please assist me with the what could be the scenarios to test the file system mount/umount performance check in HPUX. Thanks in advance, Vaishey (5 Replies)
Discussion started by: Vaishey
5 Replies

2. Shell Programming and Scripting

Any Sample ksh script to validate all the database objects

Hi, I need a sample script to validate all the database objects like 1. table structure(columns, datatypes,key contraints if any) 2. synonyms 3. grants 4. indexes ....etc thank you! (2 Replies)
Discussion started by: srikanth_sagi
2 Replies

3. AIX

Wrap Plug Test

Can someone show me on how to use DIAG command in doing a wrap plug test for fcs0 (FC Adapter)? (3 Replies)
Discussion started by: apra143
3 Replies

4. UNIX for Advanced & Expert Users

test cases

in my organisation the unix server is migrated.the ip of the server changed and the hardware.i need to test that i am aving the same file structure and data which is created under my user id.and the utilities like sqlplus,ftp are working or not.i am talking abt the general user perspective who... (0 Replies)
Discussion started by: dr46014
0 Replies
Login or Register to Ask a Question
TAP2JUNIT(1p)						User Contributed Perl Documentation					     TAP2JUNIT(1p)

NAME
tap2junit - Converts TAP output to JUnit SYNOPSIS
tap2junit [options] <filename> <filename> ... Options: --suffix <suffix> Suffix for JUnit output files (default ".xml") --verbose Display verbose status during conversion --name <name> Provide explicit name for the JUnit test --help/-? Display brief help message --man Display full documentation DESCRIPTION
"tap2junit" converts TAP output to JUnit. Give it a list of files containing TAP results and it will create a series of ????.junit.xml output files containing the JUnit representations of that TAP contained in the files. If you specify - as the filename, "tap2junit" will read from STDIN and write to STDOUT. You may also want to use the "--name" option to name the test explicitly (as the default name of "-" isn't going to make much sense). OPTIONS
--suffix <suffix> Specifies the suffix which is appended to all of the input files, in order to generate the filename for the JUnit XML file that is being output. If you want to live dangerously and over-write your original TAP files, you can set this to "" and your original TAP files will be over-written. Defaults to .xml --verbose Display verbose status information during the conversion (telling you which TAP file its working on). --name <name> Specifies an explicit name for the JUnit test. If no name is provided, a default name will be constructed based on the full path of the TAP file being processed. This option has also been aliased as "--junit_name" to provide compatibility with a patch from Joe McMahon. --help/-? Display brief help message. --man Displays the full documentation. AUTHOR
Graham TerMarsch <cpan@howlingfrog.com> COPYRIGHT
Copyright 2008-2010, Graham TerMarsch. All Rights Reserved. This is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
TAP::Formatter::JUnit. perl v5.14.2 2012-03-12 TAP2JUNIT(1p)