We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c260527 + 4b170fc commit e9173acCopy full SHA for e9173ac
tests/testing_tests/test_causal_test_case.py
@@ -37,6 +37,17 @@ def setUp(self) -> None:
37
treatment_value=1,
38
)
39
40
+ def test_get_treatment_variable(self):
41
+ self.assertEqual(self.causal_test_case.get_treatment_variable(), "A")
42
+
43
+ def test_get_outcome_variable(self):
44
+ self.assertEqual(self.causal_test_case.get_outcome_variable(), "C")
45
46
+ def test_get_treatment_value(self):
47
+ self.assertEqual(self.causal_test_case.get_treatment_value(), 1)
48
49
+ def test_get_control_value(self):
50
+ self.assertEqual(self.causal_test_case.get_control_value(), 0)
51
52
def test_str(self):
53
self.assertEqual(
0 commit comments