필터 지우기
필터 지우기

Creating MATLAB tests in separate folder/module

조회 수: 9 (최근 30일)
Andrew Hodgson
Andrew Hodgson 2021년 12월 7일
댓글: Andrew Hodgson 2021년 12월 7일
I would like to store all my tests in a seperate tests folder within my workspace. The intention of this is to keep the code base simpler and to allow me to use matlab.unittest.TestSuite.fromFolder to create a test suite of all the tests in this directory which can be run in one command.
For example
/
|- tests/
|- testFunctionOne.m
|- testFunctionTwo.m
| functionOne.m
| functionTwo.m
I'm coming from a Python background and this is quite common there. The Python Unittests module searches through a module for all tests and runs them.
When I try this in MATLAB this creates an error as the tests cannot find the functions located in the root directory. This makes sense becasue they're not on the search path when running functions from the tests directory. I don't want to dwell on Python, but this also happens there too. The solution is to add the root directory to the PYTHONPATH variable.
My questions are as follows:
  1. Is it common to locate the tests seperatly from the source code in MATLAB?
  2. What is the best way to add the root directory of my project to the search path of the tests?
  3. Is there another better best practice way of placing all tests outside of the root directory that I'm not aware off?

채택된 답변

Yongjian Feng
Yongjian Feng 2021년 12월 7일
편집: Yongjian Feng 2021년 12월 7일
Use
addpath("your_root_path")
  댓글 수: 3
Yongjian Feng
Yongjian Feng 2021년 12월 7일
You just need to add it once. The matlab path is global. Once added, all will get it.
Andrew Hodgson
Andrew Hodgson 2021년 12월 7일
Brillient, thank you.

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

추가 답변 (0개)

카테고리

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

태그

제품


릴리스

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by