我在Cocoapods上有一个带有测试的吊舱,但是cocoapods.org说吊舱没有测试。我该怎么做?我做错了什么?
https://cocoapods.org/pods/SearchEmojiOnString https://github.com/GabrielMassana/SearchEmojiOnString-iOS
答案 0 :(得分:4)
代码太复杂了: https://github.com/CocoaPods/cocoadocs.org/blob/master/classes/testing_idealist.rb
大致是:
通过正则表达式寻找共同的期望,例如
regexes = [/XCTAssert|XCTFail/, # XCTest
/expect\(/, # Expecta, Nimble
/should\]|shouldNot\]/, # Kiwi
/assertThat/, # OCHamcrest
/ should .*;| should_not |expect\(/, # Cedar
/FBSnapshotVerify/ # FBSnapshotTestCase
]
total_test_expectations
。根据我的内联评论,我们在Xcode项目中使用Unicode之前遇到了问题。也许这就是你的问题,如果你能弄明白,我会很感激PR。