Examples of NSInteger


Examples of org.rococoa.cocoa.foundation.NSInteger

     * Test of maxConcurrentOperationCount method, of class NSOperationQueue.
     */
    @Test
    public void testMaxConcurrentOperationCount() {
        assertEquals(NSOperationQueue.NSOperationQueueDefaultMaxConcurrentOperationCount, fixture.maxConcurrentOperationCount().intValue());
        fixture.setMaxConcurrentOperationCount(new NSInteger(5));
        assertEquals(new NSInteger(5), fixture.maxConcurrentOperationCount());
    }
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.