array equals not work well in jdk5
Brought to you by:
tammofreese
jdbcOperations.update(contains("vbb_user"), aryEq(new Object[] {100, 1 }))).andReturn(1);
code like above will be reported not much
cause jdk auto package 100 and 1 to Integer Object
if replace with code below, will fix it.
jdbcOperations.update(contains("vbb_user"), aryEq(new Object[] {
new Integer(100), new Long(1) }))).andReturn(1);
Logged In: YES
user_id=893525
Originator: NO
Hi, I did the following which worked fine. Can you give me a failing test case?
Logged In: YES
user_id=1601458
Originator: YES
well, i noticed that u use 1L instead of 1
may be that the reason why i am failed.
It was not a issue, maybe some addition to the documents..
Thanks, Henri.