User`s guide

R2014a
3-8
\\folder4\.
In R2012b and earlier, the same commands returned:
f =
C:\foo\folder1\..\folder2
g =
C:\foo\folder1\\\folder3\\
h =
\\folder4\.
Compatibility Considerations
Change code that relies on locating exact strings containing repeated file separators or
dot and double-dot symbols in a full file path.
Support array-creation functions in your class
Class authors can add support to their classes for the array creation functions (ones,
zeros, rand, eye, NaN, inf, true, false, cast, rand, randn, and randi). This
support includes the class name and prototype object syntaxes. For more information, see
Class Support for Array-Creation Functions.
Custom plugins in unit testing framework
The matlab.unittest testing framework provides an interface class,
matlab.unittest.plugins.TestRunnerPlugin, to create custom plugins and extend the
TestRunner. For more information, see Write Plugins to Extend TestRunner and Create
Custom Plugin.
Test parameterization and selection in unit testing framework
Test authors can write tests that are parameterized to combine and execute over lists of
data. For more information, see Create Basic Parameterized Test and Create Advanced
Parameterized Test.
The matlab.unittest.TestSuite.selectIf method, combined with classes in the
matlab.unittest.selectors package, allows for the improved selection of tests included in
the test suite.