Source code for moe.tests.optimal_learning.python.linkers_test

# -*- coding: utf-8 -*-
"""Tests that linkers contain all possible types defined in constants."""
from moe.optimal_learning.python.constant import COVARIANCE_TYPES, DOMAIN_TYPES, OPTIMIZER_TYPES, LIKELIHOOD_TYPES
from moe.optimal_learning.python.linkers import COVARIANCE_TYPES_TO_CLASSES, DOMAIN_TYPES_TO_DOMAIN_LINKS, OPTIMIZER_TYPES_TO_OPTIMIZER_METHODS, LOG_LIKELIHOOD_TYPES_TO_LOG_LIKELIHOOD_METHODS


[docs]class TestLinkers(object): """Tests that linkers contain all possible types defined in constants."""