This tutorial demonstrates the basic usage of Fluent Assertions.
Let's create a simple example:
```python
def test_function():
assert 1 == 1, "Test Case 1 Passed"
assert 10 > 5, "Test Case 2 Passed"
assert 0 < 10, "Test Case 3 Passed"
Now, let's run the test:
def test_function():
assert 1 == 1, "Test Case 1 Passed"
assert 10 > 5, "Test Case 2 Passed"
assert 0 < 10, "Test Case 3 Passed"