MuseScore/mtest/testutils.h
2013-05-13 20:24:19 +02:00

48 lines
1.6 KiB
C++

//=============================================================================
// MuseScore
// Music Composition & Notation
// $Id: score.cpp 5149 2011-12-29 08:38:43Z wschweer $
//
// Copyright (C) 2012 Werner Schweer
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2
// as published by the Free Software Foundation and appearing in
// the file LICENCE.GPL
//=============================================================================
#ifndef __TESTUTILS_H__
#define __TESTUTILS_H__
namespace Ms {
class MScore;
class Score;
class Element;
//---------------------------------------------------------
// MTest
//---------------------------------------------------------
class MTest {
protected:
Ms::MScore* mscore;
QString root; // root path of test source
Ms::Score* score;
MTest();
Ms::Score* readScore(const QString& name);
Ms::Score* readCreatedScore(const QString& name);
bool saveScore(Ms::Score*, const QString& name);
bool savePdf(Ms::Score*, const QString& name);
bool saveMusicXml(Ms::Score*, const QString& name);
bool compareFiles(const QString& saveName, const QString& compareWith);
bool saveCompareScore(Ms::Score*, const QString& saveName, const QString& compareWith);
bool saveCompareMusicXmlScore(Ms::Score*, const QString& saveName, const QString& compareWith);
Ms::Element* writeReadElement(Ms::Element* element);
void initMTest();
};
}
#endif