コード例 #1
0
ファイル: test_source.py プロジェクト: rafwiewiora/PyEMMA
 def test_describe(self):
     desc = self.inp.describe()
     assert types.is_string(desc) or types.is_list_of_string(desc)
コード例 #2
0
ファイル: test_source.py プロジェクト: rafwiewiora/PyEMMA
 def test_trajfiles(self):
     assert types.is_list_of_string(self.inp.filenames)
コード例 #3
0
ファイル: test_tica.py プロジェクト: yuxuanzhuang/PyEMMA
 def test_describe(self):
     desc = self.tica_obj.describe()
     assert types.is_string(desc) or types.is_list_of_string(desc)
     # describe on empty estimator
     tica(lag=1).describe()
コード例 #4
0
ファイル: test_cluster.py プロジェクト: zzmjohn/PyEMMA
 def test_describe(self):
     for c in self.cl:
         desc = c.describe()
         assert types.is_string(desc) or types.is_list_of_string(desc)
コード例 #5
0
ファイル: test_cluster.py プロジェクト: ismaelresp/PyEMMA
 def test_describe(self):
     for c in self.cl:
         desc = c.describe()
         assert types.is_string(desc) or types.is_list_of_string(desc)
コード例 #6
0
ファイル: test_pca.py プロジェクト: ismaelresp/PyEMMA
 def test_describe(self):
     desc = self.pca_obj.describe()
     assert types.is_string(desc) or types.is_list_of_string(desc)
コード例 #7
0
ファイル: test_assign.py プロジェクト: ismaelresp/PyEMMA
 def test_describe(self):
     c = self.ass
     desc = c.describe()
     assert types.is_string(desc) or types.is_list_of_string(desc)