blob: ff081515d97151cf72696100c258286887d87576 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.commons.exec;
import junit.framework.AssertionFailedError;
import junit.framework.TestCase;
public class TestUtilTest extends TestCase {
public void testAssertArrayEquals() {
String[] expected = new String[]{"aaa", "bbb", "ccc"};
String[] actual = new String[]{"aaa", "bbb", "ccc"};
TestUtil.assertEquals(expected, actual, true);
}
public void testAssertArrayNotEquals() {
String[] expected = new String[]{"aaa", "bbb", "ccc"};
String[] actual = new String[]{"aaa", "ddd", "ccc"};
try{
TestUtil.assertEquals(expected, actual, true);
fail("Must throw AssertionFailedError");
} catch(AssertionFailedError e) {
// OK
}
}
public void testAssertArrayNotOrderEquals() {
String[] expected = new String[]{"aaa", "ccc", "bbb"};
String[] actual = new String[]{"aaa", "ddd", "ccc"};
try{
TestUtil.assertEquals(expected, actual, true);
fail("Must throw AssertionFailedError");
} catch(AssertionFailedError e) {
// OK
}
}
public void testAssertArrayEqualsOrderNotSignificant() {
String[] expected = new String[]{"aaa", "ccc", "bbb"};
String[] actual = new String[]{"aaa", "bbb", "ccc"};
TestUtil.assertEquals(expected, actual, false);
}
public void testAssertArrayEqualsNullNull() {
String[] expected = null;
String[] actual = null;
TestUtil.assertEquals(expected, actual, false);
}
public void testAssertArrayEqualsActualNull() {
String[] expected = new String[]{"aaa", "ccc", "bbb"};
String[] actual = null;
try{
TestUtil.assertEquals(expected, actual, true);
fail("Must throw AssertionFailedError");
} catch(AssertionFailedError e) {
// OK
}
}
public void testAssertArrayEqualsExpectedNull() {
String[] expected = null;
String[] actual = new String[]{"aaa", "ddd", "ccc"};
try{
TestUtil.assertEquals(expected, actual, true);
fail("Must throw AssertionFailedError");
} catch(AssertionFailedError e) {
// OK
}
}
}