test_g3d_lib.h 892 B

123456789101112131415161718192021222324252627282930
  1. /*****************************************************************************
  2. *
  3. * MODULE: Grass g3d Library
  4. * AUTHOR(S): Soeren Gebbert, Braunschweig (GER) Jun 2011
  5. * soerengebbert <at> googlemail <dot> com
  6. *
  7. * PURPOSE: Unit and Integration tests
  8. *
  9. * COPYRIGHT: (C) 2000 by the GRASS Development Team
  10. *
  11. * This program is free software under the GNU General Public
  12. * License (>=v2). Read the file COPYING that comes with GRASS
  13. * for details.
  14. *
  15. *****************************************************************************/
  16. #ifndef _TEST_G3D_LIB_H_
  17. #define _TEST_G3D_LIB_H_
  18. #include <grass/G3d.h>
  19. #include <grass/gis.h>
  20. #include <grass/glocale.h>
  21. double compute_time_difference(struct timeval start, struct timeval end);
  22. int unit_test_coordinate_transform(void);
  23. int unit_test_put_get_value(void);
  24. #endif