view test/bug-45351/bug-45351.tst @ 26971:f75882347af3

update bug status in tests * test/bug-45351/bug-45351.tst, test/fcn-handle/object-method.tst, test/fcn-handle/package-function.tst, test/fcn-handle/static-method.tst: Update status of fixed bugs in tests.
author John W. Eaton <jwe@octave.org>
date Mon, 25 Mar 2019 19:20:09 +0000
parents 45fc6505a803
children
line wrap: on
line source

%!shared obj, h1, h2, h3
%! obj = bug45351 ();
%! [h1, h2, h3] = obj.get_handles ();
%!assert <*45351> (obj.bar (1), 'bug45351.foo: 1')
%!assert <*45351> (obj.bar (2), 'bug45351.foo: 2')
%!assert <*45351> (obj.bar (3), 'bug45351.foo: 3')
%!assert <*45351> (h1 (obj, 1), 'bug45351.foo: 1')
%!assert <*45351> (h2 (obj, 2), 'bug45351.foo: 2')
%!assert <*45351> (h3 (obj, 3), 'bug45351.foo: 3')
%!error (obj.h1 (1))
%!error (obj.h2 (2))
%!error (obj.h3 (3))