0

OCMocks を正しく使用しているかどうか、または .lib ファイルではなく cocoapods バージョンを使用しているためかどうかはわかりません。

テストはこちら

#import "MWViewControllerTests.h"
#import "MWViewController.h"
#import "OCMockObject.h"
#import "MWGoogleTrends.h"
#import "OCMockRecorder.h"

@implementation MWViewControllerTests {

    MWViewController *vcSUT;
    id googleTrends;
    NSArray *trends;
}

- (void)setUp
{
    [super setUp];
    vcSUT = [[MWViewController alloc] init];
    googleTrends = [OCMockObject mockForClass:[MWGoogleTrends class]];
    vcSUT.googleTrends = googleTrends;
    trends = [[NSArray alloc] initWithObjects:@"trend1", @"trend2", @"trend3", nil];
    [[[googleTrends stub] andReturn:trends] getLatestTrends];
}

- (void)tearDown
{
    // Tear-down code here.
    [super tearDown];
}

- (void)test_ViewDidLoadShouldCallGoogleTrends_getLatestTrends
{
    [[googleTrends expect] getLatestTrends];
    [vcSUT view];  // calls loadView
    [googleTrends verify];
}

@終わり

VC は次のとおりです。

@implementation MWViewController {

    NSArray *_trends;
}

@synthesize googleTrends;

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    _trends = [self.googleTrends getLatestTrends];
}

もちろん、googleTrends はヘッダーのプロパティです。

 @property (nonatomic, strong) MWGoogleTrends *googleTrends;

その下の次のテストが合格しているため、呼び出されていると思います。

- (void)test_numRowsInTableViewShouldBeNumOfTrendsReturnedFromGetLatestTrends {

    [vcSUT view];
    int numSections = [vcSUT tableView:nil numberOfRowsInSection:0];
    STAssertEquals(numSections, 3, @"should be 3 sections");
}

- (void)test_cellForRowAtIndexPath_should_return_cell_with_trendName_as_text {

    [vcSUT view];
    UITableViewCell *cell1 = [vcSUT tableView:nil cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
    UITableViewCell *cell2 = [vcSUT tableView:nil cellForRowAtIndexPath:[NSIndexPath indexPathForRow:1 inSection:1]];
    UITableViewCell *cell3 = [vcSUT tableView:nil cellForRowAtIndexPath:[NSIndexPath indexPathForRow:2 inSection:2]];

    STAssertEquals(cell1.textLabel.text, @"trend1", @"cell text should be correct trend name");
    STAssertEquals(cell2.textLabel.text, @"trend2", @"cell text should be correct trend name");
    STAssertEquals(cell3.textLabel.text, @"trend3", @"cell text should be correct trend name");
}

@end

また、コンパイラからこの警告が表示されますが、何らかの形で関連しているかどうかはわかりません:

ld: warning: directory not found for option '-L/Users/markw/Projects/XCode/OReillyCasts/MWGoogleTrends/Pods/build/Release-iphoneos'
4

1 に答える 1

0

はい、問題はメソッドのスタブにあります。

スタブを必要とするテストメソッドに対してのみ、モックでメソッドをスタブ化する必要がありました。セットアップからスタブを取り出したときに期待値は合格しました。

于 2012-11-07T20:45:02.557 に答える