view test/help/cdefdir/cdef_help3.m @ 33232:c5dc54712378

update help function tests * test/help/cdefdir/cdef_help3.m, test/help/cdefdir/cdef_help4.m, test/help/undoc_fcn.m: New files. * test/help/cdefdir/cdef_help1.m: Rename from test/bug-65220/cdefdir/cdef_help1.m. * test/help/cdefdir/cdef_help2.m: Rename from test/bug-65220/cdefdir/cdef_help2.m. * test/help/help.tst: Rename from test/bug-65220/bug-65220.tst. New tests. Split tests so there is one assert for each test so that it is easier to find an individual failing test. * test/help/module.mk: Rename from test/bug-65220/module.mk. Update. * test/Makefile.am: Update.
author John W. Eaton <jwe@octave.org>
date Thu, 21 Mar 2024 11:21:04 -0400
parents
children
line wrap: on
line source

########################################################################
##
## Copyright (C) 2024 The Octave Project Developers
##
## See the file COPYRIGHT.md in the top-level directory of this
## distribution or <https://octave.org/copyright/>.
##
## 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/>.
##
########################################################################

classdef cdef_help3
  properties
    prop1 = 13;
    prop2 = 42;
  end

  methods
    function obj = cdef_help3 (p1, p2)
      obj.prop1 = p1;
      obj.prop2 = p2;
    end
  end
end