#include "trust_store_collection.h"
#include <gtest/gtest.h>
#include "test_helpers.h"
#include "trust_store_in_memory.h"
BSSL_NAMESPACE_BEGIN
namespace {
class TrustStoreCollectionTest : public testing::Test { … };
TEST_F(TrustStoreCollectionTest, NoStores) { … }
TEST_F(TrustStoreCollectionTest, OneStore) { … }
TEST_F(TrustStoreCollectionTest, OutputVectorsAppendedTo) { … }
TEST_F(TrustStoreCollectionTest, TwoStores) { … }
TEST_F(TrustStoreCollectionTest, DistrustTakesPriority) { … }
}
BSSL_NAMESPACE_END