blob: f12a40e15f49a113b8ee115e2545a09526b89f60 [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.netbeans.junit;
import java.lang.reflect.Method;
import junit.framework.Assert;
import junit.framework.TestResult;
import junit.framework.TestSuite;
import org.junit.Test;
/** Check the shuffle behaviour.
*
* @author Jaroslav Tulach <jtulach@netbeans.org>
*/
public class OrderTest {
static {
System.setProperty("NbTestCase.order", "1314372086210");
}
@Test public void shuffleTest() throws ClassNotFoundException {
Class<?> load = Class.forName("org.netbeans.junit.OrderHid");
TestSuite ts = new TestSuite(load);
TestResult res = junit.textui.TestRunner.run(ts);
Assert.assertEquals("No errors", 0, res.errorCount());
Assert.assertEquals("Both tests fail: " + dumpMethod(load), 2, res.failureCount());
}
private static String dumpMethod(Class<?> c) {
StringBuilder sb = new StringBuilder();
for (Method m : c.getDeclaredMethods()) {
sb.append(m.getName()).append('\n');
}
return sb.toString();
}
}