Package org.rococoa.cocoa.foundation

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

Related Classes of org.rococoa.cocoa.foundation.NSInteger

Copyright © 2018 www.massapicom. 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.