use of org.apache.geode.pdx.internal.PdxString in project geode by apache.
the class TypeUtilTest method comparingUnequivalentPdxStringToStringShouldNotMatch.
@Test
public void comparingUnequivalentPdxStringToStringShouldNotMatch() throws Exception {
String theString = "MyString";
PdxString pdxString = new PdxString("AnotherString");
assertFalse((Boolean) TypeUtils.compare(pdxString, theString, OQLLexerTokenTypes.TOK_EQ));
assertFalse((Boolean) TypeUtils.compare(theString, pdxString, OQLLexerTokenTypes.TOK_EQ));
}
Aggregations