Browse Source

Add test project

basic-view
Ali Hatami Tajik 6 months ago
parent
commit
d97b5299e8
  1. 2
      LoggerShark.pro
  2. 73
      test/.gitignore
  3. 5
      test/main.cpp
  4. 11
      test/test.pro

2
LoggerShark.pro

@ -1,2 +1,2 @@
TEMPLATE = subdirs
SUBDIRS = model gui
SUBDIRS = model gui test

73
test/.gitignore

@ -0,0 +1,73 @@
# This file is used to ignore files which are generated
# ----------------------------------------------------------------------------
*~
*.autosave
*.a
*.core
*.moc
*.o
*.obj
*.orig
*.rej
*.so
*.so.*
*_pch.h.cpp
*_resource.rc
*.qm
.#*
*.*#
core
!core/
tags
.DS_Store
.directory
*.debug
Makefile*
*.prl
*.app
moc_*.cpp
ui_*.h
qrc_*.cpp
Thumbs.db
*.res
*.rc
/.qmake.cache
/.qmake.stash
# qtcreator generated files
*.pro.user*
# xemacs temporary files
*.flc
# Vim temporary files
.*.swp
# Visual Studio generated files
*.ib_pdb_index
*.idb
*.ilk
*.pdb
*.sln
*.suo
*.vcproj
*vcproj.*.*.user
*.ncb
*.sdf
*.opensdf
*.vcxproj
*vcxproj.*
# MinGW generated files
*.Debug
*.Release
# Python byte code
*.pyc
# Binaries
# --------
*.dll
*.exe

5
test/main.cpp

@ -0,0 +1,5 @@
#include <QtTest/QtTest>
int main(int argc, char* argv[])
{
}

11
test/test.pro

@ -0,0 +1,11 @@
QT += testlib
QT -= gui
CONFIG += qt console warn_on depend_includepath testcase
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += \
main.cpp
Loading…
Cancel
Save