gflow-test.vala 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* -*- Mode: vala; indent-tabs-mode: t; c-basic-offset: 2; tab-width: 2 -*- */
  2. /********************************************************************
  3. # Copyright 2014-2022 Daniel 'grindhold' Brendle, 2015 Daniel Espinosa <esodan@gmail.com>
  4. #
  5. # This file is part of libgflow.
  6. #
  7. # libgflow is free software: you can redistribute it and/or
  8. # modify it under the terms of the GNU Lesser General Public License
  9. # as published by the Free Software Foundation, either
  10. # version 3 of the License, or (at your option) any later
  11. # version.
  12. #
  13. # libgtkflow is distributed in the hope that it will be
  14. # useful, but WITHOUT ANY WARRANTY; without even the implied
  15. # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  16. # PURPOSE. See the GNU Lesser General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU Lesser General Public
  19. # License along with libgtkflow.
  20. # If not, see http://www.gnu.org/licenses/.
  21. *********************************************************************/
  22. using GFlow;
  23. class GFlowTest.Main {
  24. public static int main (string[] args) {
  25. Test.init (ref args);
  26. Gtk.init (ref args);
  27. SourceTest.add_tests ();
  28. SinkTest.add_tests ();
  29. DockTest.add_tests ();
  30. NodeTest.add_tests ();
  31. GtkFlowTest.NodeTest.add_tests ();
  32. GFlowTest.AggregatorTest.add_tests() ;
  33. Test.run ();
  34. return 0;
  35. }
  36. }