test_raster3d_lib.h 984 B

1234567891011121314151617181920212223242526272829303132
  1. /*****************************************************************************
  2. *
  3. * MODULE: Grass raster3d 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_RASTER3D_LIB_H_
  17. #define _TEST_RASTER3D_LIB_H_
  18. #include <grass/raster3d.h>
  19. #include <grass/gis.h>
  20. #include <grass/glocale.h>
  21. #include <sys/time.h>
  22. double compute_time_difference(struct timeval, struct timeval);
  23. int unit_test_coordinate_transform(void);
  24. int unit_test_put_get_value(void);
  25. int unit_test_put_get_value_large_file(int, int, int, int);
  26. #endif