OAuth::Keyのテストを書いた(#58)

This commit is contained in:
keita
2021-02-27 19:27:09 +09:00
parent cf77f7d611
commit 605b991d60
5 changed files with 106 additions and 48 deletions
+5 -1
View File
@@ -11,7 +11,11 @@ class Key {
const std::string accessTokenSecret_;
public:
Key() = default;
Key()
: consumerKey_(""),
consumerSecret_(""),
accessToken_(""),
accessTokenSecret_("") {}
Key(const std::string& _consumerKey, const std::string& _consumerSecret,
const std::string& _accessToken, const std::string& _accessTokenSecret)
: consumerKey_(_consumerKey),