summaryrefslogtreecommitdiff
path: root/test/api
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-07-19 15:42:03 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-08-23 09:55:32 -0700
commit6bbb2e4c2b5fdb07be229b3eee03f355dc3103e5 (patch)
treeef5d0ac891bd80248a2a4946b9c9f5f85e57a587 /test/api
parentdf3b44531e1c2a95edd2a035d3744f34ebb8d0e9 (diff)
downloadqtlocation-mapboxgl-6bbb2e4c2b5fdb07be229b3eee03f355dc3103e5.tar.gz
[tests] Merge single test in set_style.cpp with other Map tests
Diffstat (limited to 'test/api')
-rw-r--r--test/api/set_style.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/api/set_style.cpp b/test/api/set_style.cpp
deleted file mode 100644
index 2399e4ea50..0000000000
--- a/test/api/set_style.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-#include <mbgl/test/util.hpp>
-#include <mbgl/test/stub_file_source.hpp>
-#include <mbgl/test/fixture_log_observer.hpp>
-
-#include <mbgl/map/map.hpp>
-#include <mbgl/platform/default/headless_view.hpp>
-#include <mbgl/platform/default/headless_display.hpp>
-#include <mbgl/util/run_loop.hpp>
-
-
-TEST(API, SetStyle) {
- using namespace mbgl;
-
- util::RunLoop loop;
-
- auto display = std::make_shared<mbgl::HeadlessDisplay>();
- HeadlessView view(display, 1);
- StubFileSource fileSource;
-
- Log::setObserver(std::make_unique<FixtureLogObserver>());
-
- {
- Map map(view, fileSource, MapMode::Still);
- map.setStyleJSON("invalid");
- }
-
- auto observer = Log::removeObserver();
- auto flo = dynamic_cast<FixtureLogObserver*>(observer.get());
- EXPECT_EQ(1u, flo->count({ EventSeverity::Error, Event::ParseStyle, -1,
- "Error parsing style JSON at 0: Invalid value." }));
- auto unchecked = flo->unchecked();
- EXPECT_TRUE(unchecked.empty()) << unchecked;
-}