Vitaly Buka | 4615e0d | 2015-10-14 15:35:12 -0700 | [diff] [blame] | 1 | // Copyright 2015 The Weave Authors. All rights reserved. |
Vitaly Buka | fc42b31 | 2015-07-24 14:04:31 -0700 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Vitaly Buka | 0f6b2ec | 2015-08-20 15:35:19 -0700 | [diff] [blame] | 5 | #include <weave/test/mock_command.h> |
Vitaly Buka | fc42b31 | 2015-07-24 14:04:31 -0700 | [diff] [blame] | 6 | |
| 7 | #include <memory> |
| 8 | #include <string> |
| 9 | |
| 10 | #include <base/values.h> |
| 11 | |
Stefan Sauer | 2d16dfa | 2015-09-25 17:08:35 +0200 | [diff] [blame] | 12 | #include "src/commands/unittest_utils.h" |
Vitaly Buka | fc42b31 | 2015-07-24 14:04:31 -0700 | [diff] [blame] | 13 | |
| 14 | namespace weave { |
Vitaly Buka | 0f6b2ec | 2015-08-20 15:35:19 -0700 | [diff] [blame] | 15 | namespace test { |
Vitaly Buka | fc42b31 | 2015-07-24 14:04:31 -0700 | [diff] [blame] | 16 | |
| 17 | std::unique_ptr<base::DictionaryValue> MockCommand::GetParameters() const { |
| 18 | return CreateDictionaryValue(MockGetParameters()); |
| 19 | } |
| 20 | |
| 21 | std::unique_ptr<base::DictionaryValue> MockCommand::GetProgress() const { |
| 22 | return CreateDictionaryValue(MockGetProgress()); |
| 23 | } |
| 24 | |
| 25 | std::unique_ptr<base::DictionaryValue> MockCommand::GetResults() const { |
| 26 | return CreateDictionaryValue(MockGetResults()); |
| 27 | } |
| 28 | |
Vitaly Buka | 0f6b2ec | 2015-08-20 15:35:19 -0700 | [diff] [blame] | 29 | } // namespace test |
Vitaly Buka | fc42b31 | 2015-07-24 14:04:31 -0700 | [diff] [blame] | 30 | } // namespace weave |