0
は、しかし、私がカバーさ0の行を持つことになりました。Pytestファイルカバーされていない(0%のラインをカバー)
import example
import pytest
import unittest
class SampleTest(unittest.TestCase):
def testAddition(self):
expected = 10
math_addition = example.add(5,5)
self.assertEqual(math_addition, expected)
def add(x,y):
return x+y