chromium/media/base/decrypt_config_unittest.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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[] =;

}  // namespace

TEST(DecryptConfigTest, CencConstruction) {}

TEST(DecryptConfigTest, CbcsConstruction) {}

TEST(DecryptConfigTest, Matches) {}

TEST(DecryptConfigTest, CencMatches) {}

TEST(DecryptConfigTest, CbcsMatches) {}

TEST(DecryptConfigTest, Output) {}

}  // namespace media