Testing Fundamentals - Why Software Testing Matters
Consider this test code:
What is the test outcome?
def test_string():
text = "hello"
assert text.upper() == "HELLO"What is the test outcome?
