Rename class TST_VDetail.

--HG--
branch : feature
This commit is contained in:
Roman Telezhynskyi 2017-01-22 15:29:23 +02:00
parent 75efd4021b
commit 5b7e359fcd
4 changed files with 10 additions and 10 deletions

View file

@ -45,7 +45,7 @@ SOURCES += \
tst_vlockguard.cpp \
tst_misc.cpp \
tst_vcommandline.cpp \
tst_vdetail.cpp \
tst_vpiece.cpp \
tst_vabstractcurve.cpp \
tst_findpoint.cpp \
tst_vellipticalarc.cpp \
@ -71,7 +71,7 @@ HEADERS += \
tst_vlockguard.h \
tst_misc.h \
tst_vcommandline.h \
tst_vdetail.h \
tst_vpiece.h \
tst_vabstractcurve.h \
tst_findpoint.h \
tst_vellipticalarc.h \

View file

@ -40,7 +40,7 @@
#include "tst_vlockguard.h"
#include "tst_misc.h"
#include "tst_vcommandline.h"
#include "tst_vdetail.h"
#include "tst_vpiece.h"
#include "tst_findpoint.h"
#include "tst_vabstractcurve.h"
#include "tst_vcubicbezierpath.h"
@ -67,7 +67,7 @@ int main(int argc, char** argv)
};
ASSERT_TEST(new TST_FindPoint());
ASSERT_TEST(new TST_VDetail());
ASSERT_TEST(new TST_VPiece());
ASSERT_TEST(new TST_VPoster());
ASSERT_TEST(new TST_VAbstractPiece());
ASSERT_TEST(new TST_VSpline());

View file

@ -26,7 +26,7 @@
**
*************************************************************************/
#include "tst_vdetail.h"
#include "tst_vpiece.h"
#include "../vpatterndb/vcontainer.h"
#include "../vpatterndb/vpiece.h"
#include "../vpatterndb/vpiecenode.h"
@ -36,13 +36,13 @@
#include <QtTest>
//---------------------------------------------------------------------------------------------------------------------
TST_VDetail::TST_VDetail(QObject *parent)
TST_VPiece::TST_VPiece(QObject *parent)
:AbstractTest(parent)
{
}
//---------------------------------------------------------------------------------------------------------------------
void TST_VDetail::ClearLoop()
void TST_VPiece::ClearLoop()
{
// Input data taken from real case
// See file <root>/src/app/share/collection/jacketМ6_30-110.val

View file

@ -31,17 +31,17 @@
#include "../vmisc/abstracttest.h"
class TST_VDetail : public AbstractTest
class TST_VPiece : public AbstractTest
{
Q_OBJECT
public:
explicit TST_VDetail(QObject *parent = nullptr);
explicit TST_VPiece(QObject *parent = nullptr);
private slots:
void ClearLoop();
private:
Q_DISABLE_COPY(TST_VDetail)
Q_DISABLE_COPY(TST_VPiece)
};
#endif // TST_VDETAIL_H