Not a dumb question, it's the right worry. The tests protect against future changes breaking current behavior, which is still very valuable. They do not prove the current behavior is correct. That part has to come from you.
Cheap ways to add yourself into the loop:
- Write the test names yourself, in plain words: "invoice total includes 21% VAT", "credit note makes total negative". Let the AI fill in the code.
- Put real numbers from a real invoice you checked by hand into a test.
- Break the code on purpose (change 21 to 12). If no test fails, that rule isn't tested.