gflow-test.vala 1.2 KB

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