Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
diogenisAl committed Feb 17, 2024
1 parent cf33f32 commit 806e35d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 3. Implementation/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
6 changes: 3 additions & 3 deletions 3. Implementation/test01.py → 3. Implementation/test_a01.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import pytest
from Calc import Calculator

# test_plus(1,5,6)
def test01():
# ...
def test_01():
a = Calculator(1,1)
""" Check that plus(1,1) = 2 """
assert a.plus() == 2

def test02():
def test_02():
a = Calculator(5,10)
""" Check that plus(5,10) = 15 """
assert a.plus() == 15

0 comments on commit 806e35d

Please sign in to comment.