MCPcopy Create free account
hub / github.com/LLMQuant/quant-mind / GraphKnowledgePlaceholderTests

Class GraphKnowledgePlaceholderTests

tests/knowledge/test_graph.py:9–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7
8
9class GraphKnowledgePlaceholderTests(unittest.TestCase):
10 def test_class_inherits_base(self):
11 # The class itself exists so users can type-hint it.
12 self.assertTrue(issubclass(GraphKnowledge, BaseKnowledge))
13
14 def test_subclassing_blocked(self):
15 with self.assertRaises(NotImplementedError):
16
17 class _AttemptedGraph(GraphKnowledge):
18 pass
19
20
21if __name__ == "__main__":

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected