Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[integration_test] Version bump to 2.0.2 #589

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/integration_test/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## NEXT
## 2.0.2

* Increase the minimum Flutter version to 3.3.

Expand Down
2 changes: 1 addition & 1 deletion packages/integration_test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This package is not an _endorsed_ implementation of `integration_test`. Therefor
dev_dependencies:
integration_test:
sdk: flutter
integration_test_tizen: ^2.0.1
integration_test_tizen: ^2.0.2
```

Then you can import `integration_test` in your Dart code:
Expand Down
2 changes: 1 addition & 1 deletion packages/integration_test/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: integration_test_tizen
description: Tizen implementation of the integration_test plugin.
homepage: https://github.com/flutter-tizen/plugins
repository: https://github.com/flutter-tizen/plugins/tree/master/packages/integration_test
version: 2.0.1
version: 2.0.2

environment:
sdk: ">=2.18.0 <4.0.0"
Expand Down
11 changes: 8 additions & 3 deletions packages/integration_test/tizen/src/integration_test_plugin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@

#include <memory>
#include <string>
#include <variant>

#include "log.h"

namespace {

class IntegrationTestPlugin : public flutter::Plugin {
public:
static void RegisterWithRegistrar(flutter::PluginRegistrar *registrar) {
Expand Down Expand Up @@ -53,9 +56,9 @@ class IntegrationTestPlugin : public flutter::Plugin {
for (const auto &pair : results_map) {
if (std::holds_alternative<std::string>(pair.first) &&
std::holds_alternative<std::string>(pair.second)) {
LOG_DEBUG("%s test: %s\n",
std::get<std::string>(pair.first).data(),
std::get<std::string>(pair.second).data());
LOG_INFO("%s test: %s\n",
std::get<std::string>(pair.first).data(),
std::get<std::string>(pair.second).data());
}
}
}
Expand All @@ -67,6 +70,8 @@ class IntegrationTestPlugin : public flutter::Plugin {
}
};

} // namespace

void IntegrationTestPluginRegisterWithRegistrar(
FlutterDesktopPluginRegistrarRef registrar) {
IntegrationTestPlugin::RegisterWithRegistrar(
Expand Down