// ==================================================================
// Do the test.
// ==================================================================
PseudoStylePath path = PseudoStylePath.EMPTY_PATH;
PseudoStylePath other = PseudoStylePath.EMPTY_PATH;
assertTrue(path.equals(other));
assertTrue(other.equals(path));
path = PseudoStylePath.EMPTY_PATH.addPseudoClassSet(pseudoClassSetMock);
assertTrue(!path.equals(other));
assertTrue(!other.equals(path));
other = PseudoStylePath.EMPTY_PATH.addPseudoClassSet(pseudoClassSetMock);
assertTrue(path.equals(other));
assertTrue(other.equals(path));
}