Skip to content
Snippets Groups Projects
Commit 6bfc71d8 authored by izabel's avatar izabel
Browse files

test fixes

SVN: 5795
parent dd93e5af
No related branches found
No related tags found
No related merge requests found
Showing
with 110 additions and 62 deletions
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
package ch.systemsx.cisd.common.collections; package ch.systemsx.cisd.common.collections;
import static org.testng.AssertJUnit.assertEquals; import static org.testng.AssertJUnit.assertEquals;
import static org.testng.AssertJUnit.fail; import static org.testng.AssertJUnit.assertTrue;
import java.util.Collection; import java.util.Collection;
...@@ -74,38 +74,46 @@ public final class CollectionUtilsTest ...@@ -74,38 +74,46 @@ public final class CollectionUtilsTest
public final void testAbbreviateWithError() public final void testAbbreviateWithError()
{ {
final Object[] objects = new Object[0]; final Object[] objects = new Object[0];
boolean exceptionThrown = false;
try try
{ {
CollectionUtils.abbreviate((Collection<?>) null, 0, false); CollectionUtils.abbreviate((Collection<?>) null, 0, false);
fail("Given list can not be null.");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here exceptionThrown = true;
} }
assertTrue("Given list can not be null.", exceptionThrown);
exceptionThrown = false;
try try
{ {
CollectionUtils.abbreviate(objects, 0, false, ToStringDefaultConverter.getInstance(), CollectionUtils.abbreviate(objects, 0, false, ToStringDefaultConverter.getInstance(),
null); null);
fail("Given CollectionStyle can not be null.");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here exceptionThrown = true;
} }
assertTrue("Given CollectionStyle can not be null.", exceptionThrown);
exceptionThrown = false;
try try
{ {
CollectionUtils.abbreviate(objects, 0, null); CollectionUtils.abbreviate(objects, 0, null);
fail("Given CollectionStyle can not be null.");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here exceptionThrown = true;
} }
assertTrue("Given CollectionStyle can not be null.", exceptionThrown);
exceptionThrown = false;
try try
{ {
CollectionUtils.abbreviate((Collection<?>) null, 0, false, null); CollectionUtils.abbreviate((Collection<?>) null, 0, false, null);
fail("IToStringConverter can not be null.");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here exceptionThrown = true;
} }
assertTrue("IToStringConverter can not be null.", exceptionThrown);
} }
} }
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
package ch.systemsx.cisd.common.collections; package ch.systemsx.cisd.common.collections;
import static org.testng.AssertJUnit.assertEquals; import static org.testng.AssertJUnit.assertEquals;
import static org.testng.AssertJUnit.fail; import static org.testng.AssertJUnit.assertTrue;
import org.testng.annotations.Test; import org.testng.annotations.Test;
...@@ -32,23 +32,26 @@ public final class CompositeValidatorTest ...@@ -32,23 +32,26 @@ public final class CompositeValidatorTest
@Test @Test
public final void testNonNullConvention() public final void testNonNullConvention()
{ {
boolean exceptionThrown = false;
final CompositeValidator<Object> validator = new CompositeValidator<Object>(); final CompositeValidator<Object> validator = new CompositeValidator<Object>();
try try
{ {
validator.addValidator(null); validator.addValidator(null);
fail("Null validator not allowed.");
} catch (final AssertionError e) } catch (final AssertionError e)
{ {
// Nothing to do here. exceptionThrown = true;
} }
assertTrue("Null validator not allowed.", exceptionThrown);
exceptionThrown = false;
try try
{ {
validator.removeValidator(null); validator.removeValidator(null);
fail("Null validator not allowed.");
} catch (final AssertionError e) } catch (final AssertionError e)
{ {
// Nothing to do here. exceptionThrown = true;
} }
assertTrue("Null validator not allowed.", exceptionThrown);
} }
@Test @Test
......
...@@ -16,11 +16,14 @@ ...@@ -16,11 +16,14 @@
package ch.systemsx.cisd.common.collections; package ch.systemsx.cisd.common.collections;
import static org.testng.AssertJUnit.assertEquals;
import static org.testng.AssertJUnit.assertTrue;
import static org.testng.AssertJUnit.fail;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import org.testng.annotations.Test; import org.testng.annotations.Test;
import static org.testng.AssertJUnit.*;
/** /**
* Tests for {@link FilteredList}. * Tests for {@link FilteredList}.
...@@ -33,22 +36,24 @@ public final class FilteredListTest ...@@ -33,22 +36,24 @@ public final class FilteredListTest
@Test @Test
public final void testDecorate() public final void testDecorate()
{ {
boolean exceptionThrown = false;
try try
{ {
FilteredList.decorate(new ArrayList<String>(), null); FilteredList.decorate(new ArrayList<String>(), null);
fail("Neither list nor validator can be null");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here. exceptionThrown = true;
} }
assertTrue("Neither list nor validator can be null", exceptionThrown);
exceptionThrown = false;
try try
{ {
FilteredList.decorate(null, ValidatorUtils.getNotNullValidator()); FilteredList.decorate(null, ValidatorUtils.getNotNullValidator());
fail("Neither list nor validator can be null");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here. exceptionThrown = true;
} }
assertTrue("Neither list nor validator can be null", exceptionThrown);
} }
private final static List<String> createList() private final static List<String> createList()
......
...@@ -18,7 +18,7 @@ package ch.systemsx.cisd.common.collections; ...@@ -18,7 +18,7 @@ package ch.systemsx.cisd.common.collections;
import static org.testng.AssertJUnit.assertEquals; import static org.testng.AssertJUnit.assertEquals;
import static org.testng.AssertJUnit.assertNull; import static org.testng.AssertJUnit.assertNull;
import static org.testng.AssertJUnit.fail; import static org.testng.AssertJUnit.assertTrue;
import java.util.regex.Pattern; import java.util.regex.Pattern;
...@@ -36,14 +36,15 @@ public final class ValidatorUtilsTest ...@@ -36,14 +36,15 @@ public final class ValidatorUtilsTest
public final void testConvertToRegEx() public final void testConvertToRegEx()
{ {
String s = null; String s = null;
boolean exceptionThrown = false;
try try
{ {
ValidatorUtils.convertToRegEx(s); ValidatorUtils.convertToRegEx(s);
fail("Pattern can not be null.");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here. exceptionThrown = true;
} }
assertTrue("Pattern can not be null.", exceptionThrown);
s = "hello"; s = "hello";
String regEx = ValidatorUtils.convertToRegEx(s); String regEx = ValidatorUtils.convertToRegEx(s);
......
...@@ -16,10 +16,15 @@ ...@@ -16,10 +16,15 @@
package ch.systemsx.cisd.common.converter; package ch.systemsx.cisd.common.converter;
import static org.testng.AssertJUnit.assertEquals;
import static org.testng.AssertJUnit.assertNotNull;
import static org.testng.AssertJUnit.assertNull;
import static org.testng.AssertJUnit.assertTrue;
import static org.testng.AssertJUnit.fail;
import java.util.Date; import java.util.Date;
import org.testng.annotations.Test; import org.testng.annotations.Test;
import static org.testng.AssertJUnit.*;
/** /**
* Test cases for the {@link ConverterPool}. * Test cases for the {@link ConverterPool}.
...@@ -34,22 +39,26 @@ public final class ConverterPoolTest ...@@ -34,22 +39,26 @@ public final class ConverterPoolTest
@Test @Test
public final void testRegisterConverter() public final void testRegisterConverter()
{ {
boolean exceptionThrown = false;
try try
{ {
ConverterPool.getInstance().registerConverter(null, null); ConverterPool.getInstance().registerConverter(null, null);
fail("Null type is not allowed.");
} catch (AssertionError ex) } catch (AssertionError ex)
{ {
// Nothing to do here. exceptionThrown = true;
} }
assertTrue("Null type is not allowed.", exceptionThrown);
exceptionThrown = false;
try try
{ {
ConverterPool.getInstance().registerConverter(String.class, null); ConverterPool.getInstance().registerConverter(String.class, null);
fail("Null converter is not allowed.");
} catch (AssertionError ex) } catch (AssertionError ex)
{ {
// Nothing to do here. exceptionThrown = true;
} }
assertTrue("Null converter is not allowed.", exceptionThrown);
assertNull(ConverterPool.getInstance().getConverter(String.class)); assertNull(ConverterPool.getInstance().getConverter(String.class));
assertNull(ConverterPool.getInstance().getConverter(Date.class)); assertNull(ConverterPool.getInstance().getConverter(Date.class));
ConverterPool.getInstance().registerConverter(Date.class, new DateConverter("dd.MM.yyyy")); ConverterPool.getInstance().registerConverter(Date.class, new DateConverter("dd.MM.yyyy"));
...@@ -61,14 +70,16 @@ public final class ConverterPoolTest ...@@ -61,14 +70,16 @@ public final class ConverterPoolTest
public final void testUnRegisterConverter() public final void testUnRegisterConverter()
{ {
assertNotNull(ConverterPool.getInstance().getConverter(Date.class)); assertNotNull(ConverterPool.getInstance().getConverter(Date.class));
boolean exceptionThrown = false;
try try
{ {
ConverterPool.getInstance().unregisterConverter(null); ConverterPool.getInstance().unregisterConverter(null);
fail("Null type is not allowed.");
} catch (AssertionError ex) } catch (AssertionError ex)
{ {
// Nothing to do here. exceptionThrown = true;
} }
assertTrue("Null type is not allowed.", exceptionThrown);
ConverterPool.getInstance().unregisterConverter(Date.class); ConverterPool.getInstance().unregisterConverter(Date.class);
assertNull(ConverterPool.getInstance().getConverter(Date.class)); assertNull(ConverterPool.getInstance().getConverter(Date.class));
} }
...@@ -76,14 +87,16 @@ public final class ConverterPoolTest ...@@ -76,14 +87,16 @@ public final class ConverterPoolTest
@Test @Test
public final void testConvert() public final void testConvert()
{ {
boolean exceptionThrown = false;
try try
{ {
ConverterPool.getInstance().convert(null, null); ConverterPool.getInstance().convert(null, null);
fail("Null type is not allowed.");
} catch (AssertionError ex) } catch (AssertionError ex)
{ {
// Nothing to do here. exceptionThrown = true;
} }
assertTrue("Null type is not allowed.", exceptionThrown);
ConverterPool pool = ConverterPool.getInstance(); ConverterPool pool = ConverterPool.getInstance();
// String // String
assertNull(pool.convert(null, String.class)); assertNull(pool.convert(null, String.class));
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
package ch.systemsx.cisd.common.db; package ch.systemsx.cisd.common.db;
import static org.testng.AssertJUnit.assertEquals; import static org.testng.AssertJUnit.assertEquals;
import static org.testng.AssertJUnit.fail; import static org.testng.AssertJUnit.assertTrue;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
...@@ -164,16 +164,18 @@ public class SqlUnitTestRunnerTest ...@@ -164,16 +164,18 @@ public class SqlUnitTestRunnerTest
createScriptPrepareExecutor(new File(testCaseFolder, "buildup.sql"), "-- build up\n", createScriptPrepareExecutor(new File(testCaseFolder, "buildup.sql"), "-- build up\n",
runtimeException); runtimeException);
boolean exceptionThrown = false;
try try
{ {
testRunner.run(TEST_SCRIPTS_FOLDER); testRunner.run(TEST_SCRIPTS_FOLDER);
fail("AssertionError expected");
} catch (AssertionError e) } catch (AssertionError e)
{ {
exceptionThrown = true;
final String message = StringUtils.split(e.getMessage(), "\n")[0]; final String message = StringUtils.split(e.getMessage(), "\n")[0];
assertEquals("Script 'buildup.sql' of test case 'my test case' failed because of " assertEquals("Script 'buildup.sql' of test case 'my test case' failed because of "
+ runtimeException, message.trim()); + runtimeException, message.trim());
} }
assertTrue("AssertionError expected", exceptionThrown);
assertEquals("====== Test case: my test case ======" + OSUtilities.LINE_SEPARATOR assertEquals("====== Test case: my test case ======" + OSUtilities.LINE_SEPARATOR
+ " execute script buildup.sql" + OSUtilities.LINE_SEPARATOR + " execute script buildup.sql" + OSUtilities.LINE_SEPARATOR
+ " script failed: skip test scripts and teardown script." + " script failed: skip test scripts and teardown script."
...@@ -193,18 +195,20 @@ public class SqlUnitTestRunnerTest ...@@ -193,18 +195,20 @@ public class SqlUnitTestRunnerTest
FileUtils.writeStringToFile(new File(testCaseFolder, "abc=abc.sql"), "Select abc\n"); FileUtils.writeStringToFile(new File(testCaseFolder, "abc=abc.sql"), "Select abc\n");
createScriptPrepareExecutor(new File(testCaseFolder, "10=c.sql"), "Select 10\n", null); createScriptPrepareExecutor(new File(testCaseFolder, "10=c.sql"), "Select 10\n", null);
createScriptPrepareExecutor(new File(testCaseFolder, "1=a.sql"), "Select 1\n", null); createScriptPrepareExecutor(new File(testCaseFolder, "1=a.sql"), "Select 1\n", null);
boolean exceptionThrown = false;
try try
{ {
testRunner.run(TEST_SCRIPTS_FOLDER); testRunner.run(TEST_SCRIPTS_FOLDER);
fail("AssertionError expected");
} catch (AssertionError e) } catch (AssertionError e)
{ {
exceptionThrown = true;
// Strip away stack trace // Strip away stack trace
final String message = StringUtils.split(e.getMessage(), "\n")[0]; final String message = StringUtils.split(e.getMessage(), "\n")[0];
assertEquals("Script '9=b.sql' of test case 'my test case' failed because of " assertEquals("Script '9=b.sql' of test case 'my test case' failed because of "
+ runtimeException, message.trim()); + runtimeException, message.trim());
} }
assertTrue("AssertionError expected", exceptionThrown);
assertEquals("====== Test case: my test case ======" + OSUtilities.LINE_SEPARATOR assertEquals("====== Test case: my test case ======" + OSUtilities.LINE_SEPARATOR
+ " execute script 1=a.sql" + OSUtilities.LINE_SEPARATOR + " execute script 1=a.sql" + OSUtilities.LINE_SEPARATOR
+ " execute script 9=b.sql" + OSUtilities.LINE_SEPARATOR + " execute script 9=b.sql" + OSUtilities.LINE_SEPARATOR
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
package ch.systemsx.cisd.common.parser; package ch.systemsx.cisd.common.parser;
import static org.testng.AssertJUnit.assertEquals; import static org.testng.AssertJUnit.assertEquals;
import static org.testng.AssertJUnit.fail; import static org.testng.AssertJUnit.assertTrue;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
...@@ -65,23 +65,28 @@ public final class ParserUtilitiesTest ...@@ -65,23 +65,28 @@ public final class ParserUtilitiesTest
public final void testGetFirstAcceptedLineWithProblematicValues() public final void testGetFirstAcceptedLineWithProblematicValues()
{ {
File file = new File(workingDirectory, "doesNotExist"); File file = new File(workingDirectory, "doesNotExist");
boolean exceptionThrown = false;
try try
{ {
ParserUtilities.getFirstAcceptedLine(null, null); ParserUtilities.getFirstAcceptedLine(null, null);
fail("Given file can not be null.");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here. exceptionThrown = true;
} }
assertTrue("Given file can not be null.", exceptionThrown);
exceptionThrown = false;
assert file.exists() == false; assert file.exists() == false;
try try
{ {
ParserUtilities.getFirstAcceptedLine(file, null); ParserUtilities.getFirstAcceptedLine(file, null);
fail("Given file must exist.");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here. exceptionThrown = true;
} }
assertTrue("Given file must exist.", exceptionThrown);
} }
@Test @Test
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
package ch.systemsx.cisd.common.process; package ch.systemsx.cisd.common.process;
import static org.testng.AssertJUnit.fail; import static org.testng.AssertJUnit.assertTrue;
import org.jmock.Expectations; import org.jmock.Expectations;
import org.jmock.Mockery; import org.jmock.Mockery;
...@@ -24,9 +24,6 @@ import org.testng.annotations.AfterMethod; ...@@ -24,9 +24,6 @@ import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod; import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test; import org.testng.annotations.Test;
import ch.systemsx.cisd.common.process.IProcess;
import ch.systemsx.cisd.common.process.ProcessRunner;
/** /**
* Test cases for the {@link ProcessRunner}. * Test cases for the {@link ProcessRunner}.
* *
...@@ -112,14 +109,16 @@ public class ProcessRunnerTest ...@@ -112,14 +109,16 @@ public class ProcessRunnerTest
will(returnValue(-1)); will(returnValue(-1));
} }
}); });
boolean exceptionThrown = false;
try try
{ {
new ProcessRunner(process); new ProcessRunner(process);
fail("Negative value for millis to sleep on failure not allowed");
} catch (AssertionError ex) } catch (AssertionError ex)
{ {
// Nothing to do here exceptionThrown = true;
} }
assertTrue("Negative value for millis to sleep on failure not allowed", exceptionThrown);
context.checking(new Expectations() context.checking(new Expectations()
{ {
{ {
......
...@@ -252,14 +252,16 @@ public final class FileUtilitiesTest extends AbstractFileSystemTestCase ...@@ -252,14 +252,16 @@ public final class FileUtilitiesTest extends AbstractFileSystemTestCase
public final void testRemovePrefixFromFileName() public final void testRemovePrefixFromFileName()
{ {
File file = new File("/tmp/dir/x.txt"); File file = new File("/tmp/dir/x.txt");
boolean exceptionThrown = false;
try try
{ {
FileUtilities.removePrefixFromFileName(null, Constants.IS_FINISHED_PREFIX); FileUtilities.removePrefixFromFileName(null, Constants.IS_FINISHED_PREFIX);
fail("Given file can not be null.");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here exceptionThrown = true;
} }
assertTrue("Given file can not be null.", exceptionThrown);
assertEquals(file, FileUtilities.removePrefixFromFileName(file, null)); assertEquals(file, FileUtilities.removePrefixFromFileName(file, null));
assertEquals(file, FileUtilities.removePrefixFromFileName(file, assertEquals(file, FileUtilities.removePrefixFromFileName(file,
Constants.IS_FINISHED_PREFIX)); Constants.IS_FINISHED_PREFIX));
...@@ -291,24 +293,28 @@ public final class FileUtilitiesTest extends AbstractFileSystemTestCase ...@@ -291,24 +293,28 @@ public final class FileUtilitiesTest extends AbstractFileSystemTestCase
assert file.exists(); assert file.exists();
newFile = FileUtilities.createNextNumberedFile(file, pattern, null); newFile = FileUtilities.createNextNumberedFile(file, pattern, null);
assertEquals(new File(workingDirectory, "abc1"), newFile); assertEquals(new File(workingDirectory, "abc1"), newFile);
boolean exceptionThrown = false;
try try
{ {
FileUtilities.createNextNumberedFile(null, pattern, null); FileUtilities.createNextNumberedFile(null, pattern, null);
fail("Null value for file not allowed.");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here exceptionThrown = true;
} }
assertTrue("Null value for file not allowed.", exceptionThrown);
String defaultFileName = "abc_[1]"; String defaultFileName = "abc_[1]";
exceptionThrown = false;
try try
{ {
FileUtilities.createNextNumberedFile(file, Pattern.compile("dummyPattern"), FileUtilities.createNextNumberedFile(file, Pattern.compile("dummyPattern"),
defaultFileName); defaultFileName);
fail("Must contain either '(\\d+)' or ([0-9]+).");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here exceptionThrown = true;
} }
assertTrue("Must contain either '(\\d+)' or ([0-9]+).", exceptionThrown);
// File already exists but default one does not // File already exists but default one does not
assertEquals(file.getName(), "abc"); assertEquals(file.getName(), "abc");
assert file.exists(); assert file.exists();
...@@ -342,14 +348,16 @@ public final class FileUtilitiesTest extends AbstractFileSystemTestCase ...@@ -342,14 +348,16 @@ public final class FileUtilitiesTest extends AbstractFileSystemTestCase
@Test @Test
public final void testGetRelativeFile() public final void testGetRelativeFile()
{ {
boolean exceptionThrown = false;
try try
{ {
FileUtilities.getRelativeFile(null, null); FileUtilities.getRelativeFile(null, null);
fail("Given root and file can not be null.");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here exceptionThrown = true;
} }
assertTrue("Given root and file can not be null.", exceptionThrown);
File file = new File(workingDirectory, "hello"); File file = new File(workingDirectory, "hello");
assertEquals(workingDirectory.getAbsolutePath() + File.separator + "hello", file assertEquals(workingDirectory.getAbsolutePath() + File.separator + "hello", file
.getAbsolutePath()); .getAbsolutePath());
...@@ -477,14 +485,15 @@ public final class FileUtilitiesTest extends AbstractFileSystemTestCase ...@@ -477,14 +485,15 @@ public final class FileUtilitiesTest extends AbstractFileSystemTestCase
@Test @Test
public final void testNormalizeFile() throws IOException public final void testNormalizeFile() throws IOException
{ {
boolean exceptionThrown = false;
try try
{ {
FileUtilities.normalizeFile(null); FileUtilities.normalizeFile(null);
fail("Given file can not be null.");
} catch (AssertionError ex) } catch (AssertionError ex)
{ {
// Nothing to do here. exceptionThrown = true;
} }
assertTrue("Given file can not be null.", exceptionThrown);
final File file = new File(workingDirectory, "../dir"); final File file = new File(workingDirectory, "../dir");
final String canonicalPath = file.getCanonicalPath(); final String canonicalPath = file.getCanonicalPath();
assertFalse(canonicalPath.equals(file.getAbsolutePath())); assertFalse(canonicalPath.equals(file.getAbsolutePath()));
......
...@@ -16,15 +16,14 @@ ...@@ -16,15 +16,14 @@
package ch.systemsx.cisd.common.utilities; package ch.systemsx.cisd.common.utilities;
import static org.testng.AssertJUnit.assertEquals;
import static org.testng.AssertJUnit.assertTrue;
import java.util.Arrays; import java.util.Arrays;
import java.util.List; import java.util.List;
import org.testng.annotations.Test; import org.testng.annotations.Test;
import ch.systemsx.cisd.common.utilities.StringUtilities;
import static org.testng.AssertJUnit.*;
/** /**
* Test cases for the {@link StringUtilities}. * Test cases for the {@link StringUtilities}.
* *
...@@ -69,14 +68,16 @@ public class StringUtilitiesTest ...@@ -69,14 +68,16 @@ public class StringUtilitiesTest
@Test @Test
public final void testGetOrdinal() public final void testGetOrdinal()
{ {
boolean exceptionThrown = false;
try try
{ {
StringUtilities.getOrdinal(-1); StringUtilities.getOrdinal(-1);
fail("Ordinal of negative number not possible.");
} catch (AssertionError e) } catch (AssertionError e)
{ {
// Nothing to do here. exceptionThrown = true;
} }
assertTrue("Ordinal of negative number not possible.", exceptionThrown);
assertEquals("0th", StringUtilities.getOrdinal(0)); assertEquals("0th", StringUtilities.getOrdinal(0));
assertEquals("1st", StringUtilities.getOrdinal(1)); assertEquals("1st", StringUtilities.getOrdinal(1));
assertEquals("2nd", StringUtilities.getOrdinal(2)); assertEquals("2nd", StringUtilities.getOrdinal(2));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment