解析预期表达式

时间:2015-04-23 23:26:47

标签: objective-c xctest expected-exception

我被这个错误困扰了。 XCTAssertNotNil自动填充正常,代码似乎微不足道。 “解析问题”似乎很奇怪,其中有3个。

我尝试过显示隐形以找到任何奇怪的空间和东西,但却找不到任何东西。

我在其他测试中使用Specta / Xpecta / OCMock。使用Cocoapods

#import <XCTest/XCTest.h>

@interface SPRecipientDataViewModelTests : XCTestCase
@end

@implementation SPRecipientDataViewModelTests

- (void)testHelloNotNil {
    XCTAssertNotNil(@"hello", @"hello is nil");
}

Expected expression

parse issue expected expression

1 个答案:

答案 0 :(得分:0)

看起来这里的问题是Specta。看起来我正在使用它的旧版本。更新到最新的Specta修复了这个问题。看起来与XCTest

有些冲突