Verify equality and inequality comparisons between two values
Preconditions (2)
Step 1: Create a test function named test_compare_values
Step 2: Inside the function, define two variables: a = 10 and b = 20
Step 3: Assert that a is not equal to b
Step 4: Assert that a is less than b
Step 5: Assert that b is greater than a
Step 6: Define another variable c = 10
Step 7: Assert that a is equal to c
✅ Expected Result: All assertions pass without errors, confirming correct equality and inequality comparisons.