ich habe im gleichen Workspace zwei Projekte. Projekt AAA ist eine normale Qt Widget Applikation. Projekt AAATest ein Unit Test Projekt. Beide Projekte wurden mit Qt Creator erstellt.
Leider gelingt es mir nicht im Unit Test Projekt, einen Test der sich auf das Projekt AAA bezieht zu schreiben
Die .pro des Unit Test Projektes schaut so aus:
Code: Alles auswählen
#-------------------------------------------------
#
# Project created by QtCreator 2012-12-16T23:25:59
#
#-------------------------------------------------
QT += core gui testlib
TARGET = AAAUITest
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
HEADERS += "../AAA/*"
SOURCES += main.cpp\ "../AAA/*" \
tst_a1uitesttest.cpp
FORMS += \
"../AAA/testaview.ui"
Viele Grüße