LoginSignup
2
1

More than 3 years have passed since last update.

PICTをMacにインストールする

Posted at

pictとは

こいつの事である

microsoft/pict
https://github.com/microsoft/pict

All-Pairs法(ペアワイズ法)というモノで、テストケースを自動で作成してくれるツール

インストール方法

git clonebrewの2パターンがあるようだ

自分はgit cloneしか試してない
(後でbrewにあることを知った...)

git clone

cloneしてmakeするようだ

$ git clone https://github.com/Microsoft/pict.git
$ cd pict/
$ make
$ sudo install -m 0755 pict /usr/local/bin/pict

動作確認はpictのUsageが表示されればインストールOK

$ pict
Pairwise Independent Combinatorial Testing

Usage: pict model [options]

Options:
 /o:N    - Order of combinations (default: 2)
 /d:C    - Separator for values  (default: ,)
 /a:C    - Separator for aliases (default: |)
 /n:C    - Negative value prefix (default: ~)
 /e:file - File with seeding rows
 /r[:N]  - Randomize generation, N - seed
 /c      - Case-sensitive model evaluation
 /s      - Show model statistics

Homebrew

まずは探してみる

$ brew search pict
==> Formulae
pict

あった。

たぶん以下でインストールできる(試してないけど)

brew install pict
2
1
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
2
1