No longer use automoc.

This commit is contained in:
Felix Geyer 2010-11-21 23:06:30 +01:00
parent a428464573
commit 230d24a123
21 changed files with 416 additions and 164 deletions

View file

@ -15,19 +15,13 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "TestHashedBlockStream.h"
#include <QtCore/QBuffer>
#include <QtTest/QTest>
#include "streams/HashedBlockStream.h"
class TestHashedBlockStream : public QObject
{
Q_OBJECT
private Q_SLOTS:
void testWriteRead();
};
void TestHashedBlockStream::testWriteRead()
{
QByteArray data = QByteArray::fromHex("603deb1015ca71be2b73aef0857d77811f352c073b6108d72d9810a30914dff4");
@ -70,5 +64,3 @@ void TestHashedBlockStream::testWriteRead()
}
QTEST_MAIN(TestHashedBlockStream);
#include "TestHashedBlockStream.moc"