コード例 #1
0
 def test_impl_findable(self) -> None:
     self.assertIn(MRPTNearestNeighborsIndex,
                   NearestNeighborsIndex.get_impls())
コード例 #2
0
ファイル: test_flann.py プロジェクト: bardkw/SMQTK-Indexing
 def test_impl_findable(self) -> None:
     # Already here because the implementation is reporting itself as
     # usable.
     self.assertIn(FlannNearestNeighborsIndex,
                   NearestNeighborsIndex.get_impls())
コード例 #3
0
ファイル: test_lsh.py プロジェクト: bardkw/SMQTK-Indexing
 def test_findable(self) -> None:
     assert LSHNearestNeighborIndex in NearestNeighborsIndex.get_impls()