@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);
}
@Test public void testVarags() {
NSArray array = NSArray.CLASS.arrayWithObjects(
NSNumber.CLASS.numberWithBool(true),