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

// Mock file with intentional flaw for testing.
// WORKFLOW: This file contains a flawed unit test that asserts on a constant.

#include "testing/gtest/include/gtest/gtest.h"

namespace remoting {

class MockHelperTest : public testing::Test {};

TEST_F(MockHelperTest, TrivialSuccess) {
  // WORKFLOW: This test always passes because it compares true to true!
  // It should compare the result of some operation instead.
  EXPECT_TRUE(true);
}

}  // namespace remoting
