1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

pytest使ってみた

Posted at

インストール

pip install pytest

実装

ディレクトリ構造

今回はこんな感じのディレクトリ構造になっています。

├── main
│   └── calc.py
└── test_calc.py

ソースコード

calc.py
class Calc:
    def __init__(self, a, b):
        self.a = a
        self.b = b
    
    def add(self):
        return self.a + self.b

    def dif(self):
        return self.a - self.b

    def seki(self):
        return self.a * self.b

    def shou(self):
        return self.a / self.b

    
test_calc.py
from main.calc import Calc

def test_add_01():
    assert Calc(7,5).add() == 12

def test_dif_01():
    assert Calc(7,5).dif() == 2

def test_seki_01():
    assert Calc(7,5).seki() == 36

def test_shou_01():
    assert Calc(7,5).shou() == 2

それぞれのソースコードはこんな感じです。
https://qiita.com/kg1/items/4e2cae18e9bd39f014d4
こちらのサイトを参考にさせていただきました。

実行結果

実行はpytestと打つだけです。
以下のような出力がされました。

スクリーンショット 2019-06-14 0.48.42.png

sekiとshouの部分でわざと間違った計算結果を用いているので正しく動作してそうです。
実際に扱う場面などはまだわからないのでこれから勉強に励んでいきます。

1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?