view test/bug-50716/bug-50716.tst @ 26946:04e5cb5e2cb3

update bug status in tests * __ichol__.cc, file-io.cc, mappers.cc, oct-map.cc, syscalls.cc, asech.m, quadgk.m, deconv.m, poly.m, betainc.m, expint.m, gammainc.m, perms.m, native2unicode.m, bug-38236.tst, bug-47680.tst, bug-50716.tst, classdef.tst, classes.tst, for.tst, nest.tst, struct.tst: Update status of fixed bugs in tests.
author John W. Eaton <jwe@octave.org>
date Wed, 20 Mar 2019 02:27:30 +0000
parents 00f796120a6d
children b442ec6dda5c
line wrap: on
line source

## Copyright (C) 2017-2019 John W. Eaton
##
## This file is part of Octave.
##
## Octave is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, see
## <https://www.gnu.org/licenses/>.

%!test
%! obj = myclass ();
%! str = "Octave";
%! val = obj.methodA (str(1:end));
%! assert (val, str);

%!test <*50716>
%! obj = myclass ();
%! foo = {obj};
%! str = "Octave";
%! val = foo{1}.methodA (str(1:end));
%! assert (val, str);

%!test <*50716>
%! obj = myclass ();
%! foo = {obj};
%! str = "Octave";
%! val = foo{end}.methodA (str(1:end));
%! assert (val, str);