
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
스택 부분 학습 중에 stack.push(), stack.pop(), stack.is_empty()를 정의하지 않고 test 파일을 실행해도 assertion 에러가 발생하지 않습니다.

작성한 코드 및 에러 메세지
# structures.py
def push(self):
pass
def pop(self):
pass
def is_empty(self):
pass
# test.py
def test_stack():
stack = Stack()
stack.push(1)
stack.push(2)
stack.push(3)
stack.push(4)
stack.push(5)
assert stack.pop() == 5
assert stack.pop() == 4
assert stack.pop() == 3
assert stack.pop() == 2
assert stack.pop() == 1
assert stack.pop() is None
assert stack.is_empty()
# assert test
assert False
# prompt
Process finished with exit code 0
