Reputation: 11
nice to meet you all here. I have question about software testing, i am quite new around 6 months in software testing.
My question is: Can we make automated test case if the test case requires the device to reboot?
Upvotes: 1
Views: 97
Reputation: 226
You can split your test into two pieces: one before reboot, and the other one after reboot. If you need a specific data for the second piece, you can save the output of first test and then call it during your second test piece.
Upvotes: 1