summaryrefslogtreecommitdiffstats
path: root/junit4/src/test/java/org/junit/tests/description/TestDescriptionTest.java
blob: 7d6c8a55b97b93f48a54d5a3d5af49db8a57d737 (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.junit.tests.description;

import static org.junit.Assert.assertFalse;
import org.junit.Test;
import org.junit.runner.Description;

public class TestDescriptionTest {
	@Test public void equalsIsFalseForNonTestDescription() {
		assertFalse(Description.createTestDescription(getClass(), "a").equals(new Integer(5)));
	}
}