#include <cstdint>
#include <string>
#include "src/base/test/status_matchers.h"
#include "src/trace_redaction/collect_timeline_events.h"
#include "src/trace_redaction/find_package_uid.h"
#include "src/trace_redaction/trace_redaction_framework.h"
#include "src/trace_redaction/trace_redaction_integration_fixture.h"
#include "src/trace_redaction/trace_redactor.h"
#include "test/gtest_and_gmock.h"
namespace perfetto::trace_redaction {
namespace {
constexpr uint64_t kTime = …;
}
class ProcessThreadTimelineIntegrationTest
: public testing::Test,
protected TraceRedactionIntegrationFixure { … };
TEST_F(ProcessThreadTimelineIntegrationTest, PackageThreadsAreConnected) { … }
TEST_F(ProcessThreadTimelineIntegrationTest, MainThreadIsConnected) { … }
TEST_F(ProcessThreadTimelineIntegrationTest,
DoesNotConnectDisconnectedMainThread) { … }
}