#include "chrome/browser/web_applications/isolated_web_apps/error/uma_logging.h"
#include <string>
#include "base/metrics/histogram_functions.h"
#include "base/strings/strcat.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/types/expected.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace web_app {
namespace {
enum class TestingErrorEnum { … };
struct CustomErrorType { … };
TestingErrorEnum ToErrorEnum(CustomErrorType custom_error) { … }
}
TEST(IsolatedWebAppUmaExpectedLog, Enumeration) { … }
TEST(IsolatedWebAppUmaExpectedLog, CustomType) { … }
TEST(IsolatedWebAppUmaExpectedLog, HistogramNaming) { … }
}