2011-12-22 6 views
12

現在、iPadアプリの画像操作テストを作成しています。私は私のユニットテストターゲットの中に写真付きのリソースフォルダを持っていますが、[UIImage imageNamed:@ "photo1.jpg"]を使ってアクセスしようとすると画像は返されません。私がメインのResourcesフォルダ内のファイル名に変更すると、イメージが返されます。OCUnitテストターゲット内でのUIImageへのアクセス

ユニットテストターゲット内のResourcesフォルダにアクセスする方法はありますか? 、あなたはこのように画像にアクセスすることができます。

NSBundle *bundle = [NSBundle bundleForClass:[self class]]; 
NSString *imagePath = [bundle pathForResource:@"photo1" ofType:@"jpg"]; 
UIImage *image = [UIImage imageWithContentsOfFile:imagePath]; 

答えて

23

テストターゲット!)。それはUIImage imageNamedを行います:メソッドの作業を自動的にテスト対象に:

.hファイル

/** 
* UIImage imageNamed: method does not work in unit test 
* This category provides workaround that works just like imageNamed method from UIImage class. 
* Works only for png files. If you need other extension, use imageNamed:extension: method. 
* NOTE: Do not load this category or use methods defined in it in targets other than unit tests 
* as it will replace original imageNamed: method from UIImage class! 
*/ 
@interface UIImage (ImageNamedForTests) 

/** 
* Returns image with the specified name and extension. 
* @param imageName Name of the image file. Should not contain extension. 
* NOTE: You do not have to specify '@2x' in the filename for retina files - it is done automatically. 
* @param extension Extension for the image file. Should not contain dot. 
* @return UIImage instance or nil if the image with specified name and extension can not be found. 
*/ 
+ (UIImage *)imageNamed:(NSString *)imageName extension:(NSString *)extension; 


@end 

.mファイル

#import "UIImage+ImageNamedForTests.h" 
#import <objc/runtime.h> 

@implementation UIImage (ImageNamedForTests) 

+ (void)load { 
    [self swizzleClassMethod]; 
} 

+ (void)swizzleClassMethod { 
    SEL originalSelector = @selector(imageNamed:); 
    SEL newSelector = @selector(swizzled_imageNamed:); 
    Method origMethod = class_getClassMethod([UIImage class], originalSelector); 
    Method newMethod = class_getClassMethod([UIImage class], newSelector); 
    Class class = object_getClass([UIImage class]); 
    if (class_addMethod(class, originalSelector, method_getImplementation(newMethod), method_getTypeEncoding(newMethod))) { 
     class_replaceMethod(class, newSelector, method_getImplementation(origMethod), method_getTypeEncoding(origMethod)); 
    } else { 
     method_exchangeImplementations(origMethod, newMethod); 
    } 
} 

+ (UIImage *)swizzled_imageNamed:(NSString *)imageName { 
    return [self imageNamed:imageName extension:@"png"]; 
} 

+ (UIImage *)imageNamed:(NSString *)imageName extension:(NSString *)extension { 
    NSBundle *bundle = [NSBundle bundleForClass:[SomeClassFromUnitTestTarget class]];//Any class from test bundle can be used. NOTE: Do not use UIImage, as it is from different bundle 
    NSString *imagePath = [bundle pathForResource:imageName ofType:extension]; 
    return [UIImage imageWithContentsOfFile:imagePath]; 
} 
2

あなたは、次のカテゴリを使用(だけに、それを追加することができます。これに対する答えは、あなたが[UIImage imageNamed]を使用することはできませんように見えるが見つかり

3

は、このための便利なカテゴリを作りました。

image = [UIImage testImageNamed:@"image.png"]; 

ように書きます:

@interface BundleLocator : NSObject 
@end 

@interface UIImage (Test) 
+(UIImage*)testImageNamed:(NSString*) imageName; 
@end 

@implementation BundleLocator 
@end 

@implementation UIImage (Test) 
+(UIImage*)testImageNamed:(NSString*) imageName 
{ 
    NSBundle *bundle = [NSBundle bundleForClass:[BundleLocator class]]; 
    NSString *imagePath = [bundle pathForResource:imageName.stringByDeletingPathExtension ofType:imageName.pathExtension]; 
    return [UIImage imageWithContentsOfFile:imagePath]; 
} 
@end 
11

のiOS 8ので、我々が持っている:スウィフトでUIImage

-imageNamed:inBundle:compatibleWithTraitCollection:方法:Objective-Cの

let bundle = NSBundle(forClass: self.dynamicType) 
let image:UIImage? = UIImage(named: "imageFileName", 
          inBundle:bundle, 
    compatibleWithTraitCollection:nil) 

+0

この回答は上部にあるはずです。私はUIImageのための新しいイニシャライザを作成しました。私は今、一種のダムを感じています。 https://gist.github.com/Psidium/6d15525d4fba7b191290 –

+0

ありがとう、これは私の問題を解決しました。 –

関連する問題