PageRenderTime 47ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

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

#
MATLAB | 24 lines | 20 code | 4 blank | 0 comment | 5 complexity | 112319dd442608d3ce21d27052e1f568 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. multi_import_a;
  2. multi_import_b;
  3. x = multi_import_b.XXX();
  4. if (x.testx() != 0)
  5. error
  6. endif
  7. y = multi_import_b.YYY();
  8. if (y.testx() != 0)
  9. error
  10. endif
  11. if (y.testy() != 1)
  12. error
  13. endif
  14. z = multi_import_a.ZZZ();
  15. if (z.testx() != 0)
  16. error
  17. endif
  18. if (z.testz() != 2)
  19. error
  20. endif