#include <string>
#include "remoting/base/rsa_key_pair.h"
#include "remoting/base/test_rsa_key_pair.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace remoting {
namespace {
const char kTestMessage[] = …;
const char kExpectedSignature[] = …;
const char kTestRsaKeyPair2[] = …;
}
class RsaKeyPairTest : public testing::Test { … };
TEST_F(RsaKeyPairTest, ImportExportImport) { … }
TEST_F(RsaKeyPairTest, Signatures) { … }
TEST_F(RsaKeyPairTest, GenerateKey) { … }
TEST_F(RsaKeyPairTest, SignaturesDiffer) { … }
}