Skip to content

Commit 3b9540e

Browse files
author
timlinux
committedApr 8, 2006

File tree

3 files changed

+12
-17
lines changed

3 files changed

+12
-17
lines changed
 

‎tests/src/core/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ GLOBALCXXFLAGS = $(CXXFLAGS) $(EXTRA_CXXFLAGS) $(GDAL_CFLAGS) $(QT_CXXFLAGS) $(P
2121
# Instruction for running the qt4 meta object compiler
2222
#
2323

24-
%.moc.cpp: %.h
24+
%.moc.cpp: %.cpp
2525
$(MOC) -o $@ $<
2626

2727
#

‎tests/src/core/testqgsapplication.cpp

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
#include <QtTest>
2-
#include <qgsapplication.h>
3-
#include "testqgsapplication.h"
42
#include <QObject>
53
#include <QString>
4+
#include <QObject>
5+
//header for class being tested
6+
#include <qgsapplication.h>
7+
8+
class TestQgsApplication: public QObject
9+
{
10+
Q_OBJECT;
11+
public:
12+
private slots:
13+
void authorsFilePath();
14+
};
615

716

817
void TestQgsApplication::authorsFilePath()

‎tests/src/core/testqgsapplication.h

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.