initial commit
This commit is contained in:
commit
9d20827c46
2469 changed files with 470994 additions and 0 deletions
46
third-party/JsonQt/tests/JsonToProperties.cpp
vendored
Normal file
46
third-party/JsonQt/tests/JsonToProperties.cpp
vendored
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
/* LICENSE NOTICE
|
||||
Copyright (c) 2008, Frederick Emmott <mail@fredemmott.co.uk>
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
#include "JsonToProperties.h"
|
||||
|
||||
#include <QtTest/QtTest>
|
||||
|
||||
// This test assumes that JsonToVariant works correctly.
|
||||
class JsonToProperties : public QObject
|
||||
{
|
||||
Q_OBJECT;
|
||||
private slots:
|
||||
void initTestCase()
|
||||
{
|
||||
JsonQt::JsonToProperties::parse(
|
||||
"{"
|
||||
"\"objectName\": \"My JSON Properties Test Object\","
|
||||
"\"END\" : [\"OF\", \"TEST\"]"
|
||||
"}",
|
||||
this
|
||||
);
|
||||
}
|
||||
void testObjectName()
|
||||
{
|
||||
QCOMPARE(
|
||||
this->objectName(),
|
||||
QString("My JSON Properties Test Object")
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
QTEST_MAIN(JsonToProperties);
|
||||
|
||||
#include "moc_JsonToProperties.cxx"
|
||||
Reference in a new issue