Files generated during testing are not saved

조회 수: 4 (최근 30일)
Michaela Konstantinou
Michaela Konstantinou 2021년 9월 16일
댓글: Michaela Konstantinou 2021년 9월 17일
I currently use R2021a version of matlab. I have an app created with appdesigner and I write some code to test it. I use matlab.uitest framework.
In the app some .m files are generated and I want to test if the are indeed generated so I count them with numel. However, after the testing is completed neither the files exist (when I run the app normally, they are generated as expected), nor the test passes.
In addition I have inserted a breakpoint before the end of the test function just to make sure that the teardown is not responsible for the absence of the files.
Is there any bug? The files that get created while testing get deleted or saved not in the determined folder but in another temp one? Can I prevent this from happening?
Thanks in advance
  댓글 수: 1
Geoff Hayes
Geoff Hayes 2021년 9월 16일
Michaela - in your code, how do you specify where the files should be written to? Do you include a full path or just file names?

댓글을 달려면 로그인하십시오.

채택된 답변

Steven Lord
Steven Lord 2021년 9월 16일
I second Geoff Hayes's question about where you're creating these files. Are you putting them in a directory created using a TemporaryFolderFixture or a WorkingFolderFixture? If so the expected behavior of those fixtures is to delete those folders (and any files created in them) when the test completes unless there was a failure and you set the property to preserve the contents of those folders on failure.
"If you specify 'PreservingOnFailure' as true and a test using the fixture encounters a failure, the testing framework displays a message in the Command Window and does not delete the folder."
  댓글 수: 1
Michaela Konstantinou
Michaela Konstantinou 2021년 9월 17일
I found the "bug". I was manually typing in an edit field which displays (I thought it was an input source too..) the dir (chosen by a button) but the directory didn't change. So the files were saved in the default directory.. joke's on me..
Sorry

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Testing Frameworks에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by