Skip to content

Commit

Permalink
[integration_test] Version bump to 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
swift-kim committed Nov 27, 2023
1 parent 17ac315 commit 4d94e11
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
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

0 comments on commit 4d94e11

Please sign in to comment.