I copied the matlab_xunit folder to C:\Program Files, and included it (and its subfolders) on the MATLAB path. Now MATLAB recognizes new commands such as

runtests

But this command does not find any tests on the current folder. What I have done wrong? What else can I do?

>> runtests 
Starting test run with 0 test cases.

PASSED in 0.000 seconds.
link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

I am the creator of MATLAB xUnit. The most likely explanation for what you are seeing is some problem in the test files. Can you post a sample test file so I can look at it?

If you are writing subfunction-style test files, do any files in your current directory start with "test" or "Test"? Does the file contain any subfunctions that begin with "test" or "Test"? When you call one of those files with no input arguments and a single output argument, does it return a TestSuite object? If not, then double-check the documentation about creating subfunction tests.

Are you instead writing test files that subclass TestCase? Do they contain methods that begin with "test" or "Test"?

link|improve this answer
the name of the file did not started with "Test" – Jader Dias Sep 22 '09 at 20:30
OK, you should rename your test files, then. Take a look at the doc link I posted earlier. – Steve Eddins Sep 23 '09 at 11:59
I have a new question for you: stackoverflow.com/questions/1477376/… – Jader Dias Sep 25 '09 at 13:48
feedback

This document on the File Exchange page for the MATLAB xUnit Test Framework submission should help. It says that you have to create a folder with your test-case M-files in it, then make that your working directory using CD.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.