#include "gtest/gtest.h"
#include "test/codec_factory.h"
#include "test/encode_test_driver.h"
#include "test/i420_video_source.h"
#include "test/util.h"
namespace {
const int kCpuUsed = …;
const int kBaseLayerQp = …;
const int kEnhancementLayerQp = …;
class ScalabilityTest
: public ::libaom_test::CodecTestWithParam<libaom_test::TestMode>,
public ::libaom_test::EncoderTest { … };
TEST_P(ScalabilityTest, TestNoMismatch2SpatialLayers) { … }
TEST_P(ScalabilityTest, TestNoMismatch3SpatialLayers) { … }
AV1_INSTANTIATE_TEST_SUITE(…);
}