chromium/third_party/perfetto/src/trace_processor/tables/py_tables_unittest.cc

/*
 * Copyright (C) 2019 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <cstdint>
#include <utility>
#include <vector>

#include "src/trace_processor/containers/string_pool.h"
#include "src/trace_processor/db/column.h"
#include "src/trace_processor/db/column/types.h"
#include "src/trace_processor/db/column_storage.h"
#include "src/trace_processor/tables/py_tables_unittest_py.h"

#include "test/gtest_and_gmock.h"

namespace perfetto::trace_processor::tables {

TestEventTable::~TestEventTable() = default;
TestEventChildTable::~TestEventChildTable() = default;
TestSliceTable::~TestSliceTable() = default;
TestArgsTable::~TestArgsTable() = default;

namespace {

class PyTablesUnittest : public ::testing::Test {};

TEST_F(PyTablesUnittest, EventTableProprties) {}

TEST_F(PyTablesUnittest, ArgsTableProprties) {}

TEST_F(PyTablesUnittest, InsertEvent) {}

TEST_F(PyTablesUnittest, InsertEventSpecifyCols) {}

TEST_F(PyTablesUnittest, MutableColumn) {}

TEST_F(PyTablesUnittest, ShrinkToFit) {}

TEST_F(PyTablesUnittest, FindById) {}

TEST_F(PyTablesUnittest, ChildFindById) {}
TEST_F(PyTablesUnittest, ChildTableStatics) {}

TEST_F(PyTablesUnittest, ParentAndChildInsert) {}

TEST_F(PyTablesUnittest, Extend) {}

TEST_F(PyTablesUnittest, SelectAndExtend) {}

TEST_F(PyTablesUnittest, SetIdColumns) {}

}  // namespace
}  // namespace perfetto::trace_processor::tables