Package org.rococoa.cocoa.foundation

Examples of org.rococoa.cocoa.foundation.NSDate


        assertFalse(string.isEqualToString("Hello worldy"));
    }
   
    @Test public void testKeywordMethod() {
        // TODO - this method doesn't actually test keyword methods any more
        NSDate epoc = NSDate.CLASS.dateWithTimeIntervalSince1970(0);
        assertEquals(0, epoc.timeIntervalSince1970(), 0.000001f);
        NSDate anotherDate = NSDate.CLASS.dateWithTimeIntervalSince1970(40d);
        assertEquals(40, anotherDate.timeIntervalSince1970(), 0.000001f);       
    }
View Full Code Here

TOP

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

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.