Examples of invalidateAssignStrings()


Examples of net.nelz.simplesm.test.svc.TestSvc.invalidateAssignStrings()

        assertEquals(result1.size(), result2.size());
        for (int ix = 0; ix < result1.size(); ix++) {
            assertEquals(result1.get(ix), result2.get(ix));
        }

        test.invalidateAssignStrings();
        final List<String> result3 = test.getAssignStrings();

        // This was wrong before. The 3rd array is supposed to come
        // back different than the ones pulled before the invalidate
        assertFalse(result1.size() == result3.size());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.