LoginSignup
5
4

More than 5 years have passed since last update.

※CocoaPodsのインストール〜 pod setup まで完了している前提です。
インストール方法はこちら↓が参考になります。

Objective-C - CocoaPodsでPodの利用&作成のメモ - Qiita [キータ]

CocoaPodsを使ったKIFの導入方法

  • メインのTargetをDuplicateします。

スクリーンショット 2013-09-18 19.23.12.png

  • 新しいTargetに任意の名前をつけます。XXXIntegrationTestsのような名前がいいかも。

  • .xcodeprojと同じディレクトリにPodfileを作成します。

# Podfile
target :XXXIntegrationTests do
    pod 'KIF'
end
  • Podfileのあるディレクトリから下記のコマンドを打ちます。
$ pod install
  • Product Nameを変更します。

スクリーンショット 2013-09-18 19.26.17.png

あとはReadMeのExample以降を参考にテストを書いていきます
https://github.com/kif-framework/KIF

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4