mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-21 09:35:27 -04:00
35 lines
1.2 KiB
C++
35 lines
1.2 KiB
C++
/*
|
|
* GDevelop Core
|
|
* Copyright 2008-2016 Florian Rival (Florian.Rival@gmail.com). All rights
|
|
* reserved. This project is released under the MIT License.
|
|
*/
|
|
/**
|
|
* @file Tests covering events of GDevelop Core.
|
|
*/
|
|
#include "GDCore/Events/CodeGeneration/EventsCodeGenerator.h"
|
|
#include <memory>
|
|
#include "GDCore/CommonTools.h"
|
|
#include "GDCore/Extensions/Platform.h"
|
|
#include "GDCore/Project/Layout.h"
|
|
#include "GDCore/Project/Project.h"
|
|
#include "GDCore/Tools/VersionWrapper.h"
|
|
#include "catch.hpp"
|
|
|
|
TEST_CASE("EventsCodeGenerator", "[common][events]") {
|
|
SECTION("Basics") {
|
|
gd::Project project;
|
|
auto& layout = project.InsertNewLayout("Layout 1", 0);
|
|
gd::Platform platform;
|
|
gd::EventsCodeGenerator codeGenerator(project, layout, platform);
|
|
|
|
REQUIRE(codeGenerator.ConvertToString(
|
|
"Hello \"world\"!\nThis is a backslash \\") ==
|
|
"Hello \\\"world\\\"!\\nThis is a backslash \\\\");
|
|
|
|
REQUIRE(codeGenerator.ConvertToString("{\"hello\": \"world \\\" \"}") ==
|
|
"{\\\"hello\\\": \\\"world \\\\\\\" \\\"}");
|
|
REQUIRE(codeGenerator.ConvertToString("{\"hello\":\r\n\"world \\\" \"}") ==
|
|
"{\\\"hello\\\":\\r\\n\\\"world \\\\\\\" \\\"}");
|
|
}
|
|
}
|