Effacer les filtres
Effacer les filtres

skip an unit test

44 vues (au cours des 30 derniers jours)
Till Rahlf
Till Rahlf le 17 Déc 2013
Commenté : Daniel Golden le 12 Mar 2015
Hi,
I have a list of unit tests. Some of them should be skipped.
I would assume as TestResult something like that:
TestResult with properties:
Name: 'myTestCase'
Passed: 0
Failed: 0
Incomplete: 1
Duration: 0.42
In the documentation of "TestResult" there is one point: "Tests filtered through assumption"
How can I do this?
Thanks

Réponse acceptée

Sean de Wolski
Sean de Wolski le 17 Déc 2013
Modifié(e) : Sean de Wolski le 17 Déc 2013
To filter tests, you use an "assumable" qualification in your Test Method.
This will skip the remainder of the Test method but not fail it, marking it incomplete.
And a Quick Example:
classdef MyUnitTest < matlab.unittest.TestCase
methods(Test)
function Test(testCase)
testCase.assumeTrue(ismac,'The computer is not a Mac')
disp('This line of code will not run on my PC');
end
end
end
To run it:
T = MyUnitTest
run(T)
  1 commentaire
Daniel Golden
Daniel Golden le 12 Mar 2015
To unconditionally skip a test, add:
assumeFail(testCase)
to the top of the method.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Write Unit Tests dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by