Old engine for Continuous Time Bayesian Networks. Superseded by reCTBN. 🐍
https://github.com/madlabunimib/PyCTBN
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
742 B
21 lines
742 B
import pandas._testing as tm
|
|
|
|
|
|
class BaseExtensionTests:
|
|
# classmethod and different signature is needed
|
|
# to make inheritance compliant with mypy
|
|
@classmethod
|
|
def assert_equal(cls, left, right, **kwargs):
|
|
return tm.assert_equal(left, right, **kwargs)
|
|
|
|
@classmethod
|
|
def assert_series_equal(cls, left, right, *args, **kwargs):
|
|
return tm.assert_series_equal(left, right, *args, **kwargs)
|
|
|
|
@classmethod
|
|
def assert_frame_equal(cls, left, right, *args, **kwargs):
|
|
return tm.assert_frame_equal(left, right, *args, **kwargs)
|
|
|
|
@classmethod
|
|
def assert_extension_array_equal(cls, left, right, *args, **kwargs):
|
|
return tm.assert_extension_array_equal(left, right, *args, **kwargs)
|
|
|