Test Data and Fixture

You might say

Prepare fixed user and product data for the order test, and create it before every run and clean it after so the next run starts identically.

Test data are input and state samples; a fixture is a reusable setup and cleanup mechanism.A fixed user and order JSON are test data. Creating an account and order before a test, then deleting or restoring state afterward, is a fixture. Together they give each case the same start. One random input or yesterday’s leftover record is not stable evidence.
Test FixtureFixture
Further reading