[b4b313]: / matlab_xunit_3.1 / matlab_xunit / tests / testIsTestCaseSubclass.m

Download this file

16 lines (11 with data), 438 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
function test_suite = testIsTestCaseSubclass
%testIsTestCaseSubclass Unit tests for isTestCaseSubclass
% Steven L. Eddins
% Copyright 2008 The MathWorks, Inc.
initTestSuite;
function testTestCase
assertTrue(xunit.utils.isTestCaseSubclass('TestCase'));
function testSubclass
assertTrue(xunit.utils.isTestCaseSubclass('TestCaseInDir'));
function testNotASubclass
assertFalse(xunit.utils.isTestCaseSubclass('atan2'));