Coverage for difference/tests/test_cam16_ucs.py: 100%
10 statements
« prev ^ index » next coverage.py v7.11.0, created at 2025-11-16 22:49 +1300
« prev ^ index » next coverage.py v7.11.0, created at 2025-11-16 22:49 +1300
1"""Define the unit tests for the :mod:`colour.difference.cam16_ucs` module."""
3from __future__ import annotations
5from colour.difference.tests.test_cam02_ucs import TestDelta_E_Luo2006
7__author__ = "Colour Developers"
8__copyright__ = "Copyright 2013 Colour Developers"
9__license__ = "BSD-3-Clause - https://opensource.org/licenses/BSD-3-Clause"
10__maintainer__ = "Colour Developers"
11__email__ = "colour-developers@colour-science.org"
12__status__ = "Production"
14__all__ = [
15 "TestDelta_E_Li2017",
16]
19class TestDelta_E_Li2017(TestDelta_E_Luo2006):
20 """
21 Define :func:`colour.difference.cam16_ucs.delta_E_Li2017` definition unit
22 tests methods.
24 Notes
25 -----
26 - :func:`colour.difference.cam16_ucs.delta_E_Li2017` is a wrapper
27 of :func:`colour.difference.cam02_ucs.delta_E_Luo2006` and thus
28 currently adopts the same unittests.
29 """