Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
moex
Transmorpher
Commits
55d5cf76
Commit
55d5cf76
authored
Oct 16, 2002
by
Jérôme Euzenat
Browse files
Suppressed these test skeletons which are now in the test hierarchy
parent
1fcab8e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
transmorpher/src/fr/fluxmedia/transmorpher/action/ActionTest.java
deleted
100644 → 0
View file @
1fcab8e1
/**
* $Id: ActionTest.java,v 1.1 2002-09-19 08:13:58 jerome Exp $
*
* Transmorpher
*
* Copyright (C) 2001-2002 Fluxmedia and INRIA Rhône-Alpes.
*
* http://www.fluxmedia.fr - http://transmorpher.inrialpes.fr
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/** Unit test for the util package
*/
package
fr.fluxmedia.transmorpher.action
;
// import java classes
import
junit.framework.*
;
public
class
ActionTest
extends
TestCase
{
/* Declare private Variables v; */
public
ActionTest
(
String
name
){
super
(
name
);
}
protected
void
setUp
(){
/* Init private variables */
}
protected
void
tearDown
(){
}
public
static
Test
suite
(){
TestSuite
suite
=
new
TestSuite
();
suite
.
addTest
(
new
ActionTest
(
"errorTest"
)
);
return
suite
;
}
public
void
errorTest
(){
// Usually with exceptions
/*
try {
// Do what is necessary
//
// If nothing is thrown
fail("Exception not raised");
}
catch (final TransmorpherException e) {
// If the test gets here, then the right
// exception was thrown, so do nothing.
}
*/
/* Other tests are made of assertTrue and assertEquals */
}
}
transmorpher/src/fr/fluxmedia/transmorpher/stdlib/LibTest.java
deleted
100644 → 0
View file @
1fcab8e1
/**
* $Id: LibTest.java,v 1.1 2002-09-19 08:13:58 jerome Exp $
*
* Transmorpher
*
* Copyright (C) 2001-2002 Fluxmedia and INRIA Rhône-Alpes.
*
* http://www.fluxmedia.fr - http://transmorpher.inrialpes.fr
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/** Unit test for the util package
*/
package
fr.fluxmedia.transmorpher.stdlib
;
// import java classes
import
junit.framework.*
;
public
class
LibTest
extends
TestCase
{
/* Declare private Variables v; */
public
LibTest
(
String
name
){
super
(
name
);
}
protected
void
setUp
(){
/* Init private variables */
}
protected
void
tearDown
(){
}
public
static
Test
suite
(){
TestSuite
suite
=
new
TestSuite
();
suite
.
addTest
(
new
LibTest
(
"errorTest"
)
);
return
suite
;
}
public
void
errorTest
(){
// Usually with exceptions
/*
try {
// Do what is necessary
//
// If nothing is thrown
fail("Exception not raised");
}
catch (final TransmorpherException e) {
// If the test gets here, then the right
// exception was thrown, so do nothing.
}
*/
/* Other tests are made of assertTrue and assertEquals */
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment