Show
Ignore:
Timestamp:
05/17/08 03:49:27 (5 years ago)
Author:
mootoh
Message:

adding UnitTest? case.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/objective-c/HatebuCoreData/Bookmark.m

    r11706 r11714  
    99#import "Bookmark.h" 
    1010 
    11  
    1211@implementation Bookmark 
    13  
     12#if 0 
    1413- (void) awakeFromFetch { 
    1514  NSLog(@"Bookmark#awakeFromFetch: %@", self); 
    1615} 
     16#endif // 0 
     17 
     18- (void) willSave { 
     19  NSLog(@"Bookmark#willSave: %@", self); 
     20  [self update]; 
     21} 
     22 
     23-(void) update { 
     24  abort(); 
     25} 
    1726 
    1827@end