This function does nothing but succeed. You can use it in all of your test...
This function does nothing but succeed. You can use it in all of your test suites.
```python
def test():
pass
```
Self-replies
Success in C takes more work
```c
/* A test case that does nothing and succeeds. */
static void null_test_success(void **state) {
(void) state; /* unused */
}
```
Only humans can do nothing and fail. The machines can never take that away from us.