workaround segfault in compiler on macos-clang-intel
[LibreOffice.git] / include / vcl / test / TestResult.hxx
blobc64d4e88b8712c62542464f789542c06bf8d344d
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 */
11 #pragma once
13 /** Rendering test result.
15 * Test either "Passed", "Failed" or "PassedWithQuirks" which means
16 * the test passed but at least one rendering quirk was detected.
18 namespace vcl::test
20 enum class TestResult
22 Failed,
23 PassedWithQuirks,
24 Passed