#include "media/base/decrypt_config.h"
#include <sstream>
#include "media/base/encryption_pattern.h"
#include "media/base/subsample_entry.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace media {
namespace {
const char kDefaultKeyId[] = …;
const char kDefaultIV[] = …;
const char kAlternateKeyId[] = …;
const char kAlternateIV[] = …;
}
TEST(DecryptConfigTest, CencConstruction) { … }
TEST(DecryptConfigTest, CbcsConstruction) { … }
TEST(DecryptConfigTest, Matches) { … }
TEST(DecryptConfigTest, CencMatches) { … }
TEST(DecryptConfigTest, CbcsMatches) { … }
TEST(DecryptConfigTest, Output) { … }
}