GPy/python/testing/cox_tests.py

15 lines
274 B
Python
Raw Normal View History

# Copyright (c) 2013, Alan Saul
import unittest
import numpy as np
import GPy
class coxGPTests(unittest.TestCase):
def test_laplace_approx(self):
pass
if __name__ == "__main__":
print "Running unit tests, please be (very) patient..."
unittest.main()