pictとは
こいつの事である
microsoft/pict
https://github.com/microsoft/pict
All-Pairs法(ペアワイズ法)というモノで、テストケースを自動で作成してくれるツール
インストール方法
git clone
とbrew
の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