Skip to content

Commit b946e8c

Browse files
author
Kimmo
committed
Rename test dir
1 parent 2164988 commit b946e8c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

QtExercise3/QtExercise3.pro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TEMPLATE = subdirs
22
SUBDIRS += \
33
src \
4-
test_runner
4+
test
55

6-
test_runner.depends = src
6+
test.depends = src
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#include <QtTest/QTest>
2-
#include "test_runner.h"
2+
#include "test.h"
33

44
QTEST_APPLESS_MAIN (test_runner)

QtExercise3/test_runner/test_runner.cpp renamed to QtExercise3/test/test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <QTest>
2-
#include "test_runner.h"
2+
#include "test.h"
33
#include "useful.h"
44

55
#define POINT(test_name, point) qInfo("TMC:"#test_name"."#point)
File renamed without changes.

QtExercise3/test_runner/test_runner.pro renamed to QtExercise3/test/test.pro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ win32 {
1111
DEFINES += QT_DEPRECATED_WARNINGS
1212

1313
SOURCES += main.cpp \
14-
test_runner.cpp \
14+
test.cpp \
1515
$$PWD/../src/useful.cpp
1616

1717
HEADERS += \
18-
test_runner.h \
18+
test.h \
1919
$$PWD/../src/useful.h
2020

2121
INCLUDEPATH += $$PWD/../src

0 commit comments

Comments
 (0)