How remove test from test browser

조회 수: 2 (최근 30일)
Steven
Steven 2023년 12월 19일
댓글: Steven 2023년 12월 20일
I have two projects, each with test classes in a UnitTest folder in the project folder. In project A I add test by selecting the UnitTest folder. When I switch from project A to Project B how do I remove the unit tests that relate to project A?

채택된 답변

atharva
atharva 2023년 12월 19일
Hey Steven
I understand that you want to remove unit tests that are related to project A when you switch from project A to project B.
When you add multiple files, the test tree includes multiple parent nodes, each pointing to a different test file. You can remove a parent node and its children from the test tree by right-clicking the parent node and selecting Remove Test File. To remove all the tests from the test browser, click the three-dot button and select Remove all tests.This way you can remove the unit tests that relate to project A.
Alternatively, Use runtests Function:
If you prefer a programmatic approach, you can use the runtests function in MATLAB to run tests selectively. For example:
% Set the current folder to the UnitTest folder in Project B
cd('path_to_project_B/UnitTest');
% Run tests for Project B
result = runtests('*.m');
% Display the test results
disp(result);
This script runs all tests in the UnitTest folder for Project B. Adjust the path and file patterns according to your project structure. The goal is to ensure that only the relevant tests for the current project are included and executed.
You can go throught the MathWorks Documentation to have a better understanding of the runtests function
I hope this helps!
  댓글 수: 1
Steven
Steven 2023년 12월 20일
Thank you. That exactly what I needed. For some reason I thought ‘remove test file’ meant delete it, and I just didn’t even see the three dots icon.
I like the programmatic approach too, especially if I can find a way to switch test tests automatically in project open

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Create and Run MATLAB Tests에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by