PageRenderTime 43ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/test-suite/octave/director_abstract_runme.m

#
MATLAB | 44 lines | 32 code | 12 blank | 0 comment | 5 complexity | 010e2a8f3e12a660ec6f6b89f629f5fd MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. director_abstract
  2. MyFoo=@() subclass(director_abstract.Foo(),@ping);
  3. function out=ping(self)
  4. out="MyFoo::ping()";
  5. end
  6. a = MyFoo();
  7. if (!strcmp(a.ping(),"MyFoo::ping()"))
  8. error(a.ping())
  9. endif
  10. if (!strcmp(a.pong(),"Foo::pong();MyFoo::ping()"))
  11. error(a.pong())
  12. endif
  13. MyExample1=@() subclass(director_abstract.Example1(),'Color',@(self,r,g,b) r);
  14. MyExample2=@(a,b) subclass(director_abstract.Example2(a,b),'Color',@(self,r,g,b) g);
  15. MyExample3=@() subclass(director_abstract.Example3_i(),'Color',@(self,r,g,b) b);
  16. me1 = MyExample1();
  17. if (director_abstract.Example1.get_color(me1, 1,2,3) != 1)
  18. error
  19. endif
  20. me2 = MyExample2(1,2);
  21. if (me2.get_color(me2, 1,2,3) != 2)
  22. error
  23. endif
  24. me3 = MyExample3();
  25. if (me3.get_color(me3, 1,2,3) != 3)
  26. error
  27. endif
  28. # don't check that we cannot construct abstract bases, since we have no
  29. # way of disambiguating that with the normal construction case using
  30. # subclass. furthermore, calling a pure virtual method will still generate
  31. # an error.