~ubuntu-branches/ubuntu/natty/qgis/natty

« back to all changes in this revision

Viewing changes to tests/algorithms/projections/main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Johan Van de Wauw
  • Date: 2010-07-11 20:23:24 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100711202324-5ktghxa7hracohmr
Tags: 1.4.0+12730-3ubuntu1
* Merge from Debian unstable (LP: #540941).
* Fix compilation issues with QT 4.7
* Add build-depends on libqt4-webkit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
     main.cpp
 
3
     --------------------------------------
 
4
    Date                 : Sun Sep 16 12:20:40 AKDT 2007
 
5
    Copyright            : (C) 2007 by Gary E. Sherman
 
6
    Email                : sherman at mrcc dot com
 
7
 ***************************************************************************
 
8
 *                                                                         *
 
9
 *   This program is free software; you can redistribute it and/or modify  *
 
10
 *   it under the terms of the GNU General Public License as published by  *
 
11
 *   the Free Software Foundation; either version 2 of the License, or     *
 
12
 *   (at your option) any later version.                                   *
 
13
 *                                                                         *
 
14
 ***************************************************************************/
1
15
#include <iostream>
2
16
#include <cppunit/ui/text/TestRunner.h>
3
17
#include "projectioncshandlingtest.h"
4
18
 
5
19
 
6
 
int main( int , char **)
 
20
int main( int, char ** )
7
21
{
8
 
    std::cout << std::endl << "PROJECTION TESTS..................." << std::endl;  
9
 
    CppUnit::TextUi::TestRunner runner;
10
 
    runner.addTest( ProjectionCsHandlingTest::suite() );
11
 
    runner.run();
12
 
    return 0;
 
22
  std::cout << std::endl << "CRS TESTS..................." << std::endl;
 
23
  CppUnit::TextUi::TestRunner runner;
 
24
  runner.addTest( ProjectionCsHandlingTest::suite() );
 
25
  runner.run();
 
26
  return 0;
13
27
}