|
24 | 24 | class TestClientWriteOptions(unittest.TestCase): |
25 | 25 | """Test for ClientWriteOptions""" |
26 | 26 |
|
27 | | - def setUp(self): |
28 | | - pass |
29 | | - |
30 | | - def tearDown(self): |
31 | | - pass |
32 | | - |
33 | 27 | def test_client_write_options_init_with_no_params(self): |
34 | 28 | """Test ClientWriteOptions initialization with no parameters""" |
35 | 29 | options = ClientWriteOptions() |
@@ -118,12 +112,6 @@ def test_conflict_setter_none(self): |
118 | 112 | class TestWriteTransactionOpts(unittest.TestCase): |
119 | 113 | """Test for WriteTransactionOpts""" |
120 | 114 |
|
121 | | - def setUp(self): |
122 | | - pass |
123 | | - |
124 | | - def tearDown(self): |
125 | | - pass |
126 | | - |
127 | 115 | def test_write_transaction_opts_init_defaults(self): |
128 | 116 | """Test WriteTransactionOpts initialization with default values""" |
129 | 117 | opts = WriteTransactionOpts() |
@@ -189,12 +177,6 @@ def test_max_parallel_requests_setter(self): |
189 | 177 | class TestConflictOptions(unittest.TestCase): |
190 | 178 | """Test for ConflictOptions""" |
191 | 179 |
|
192 | | - def setUp(self): |
193 | | - pass |
194 | | - |
195 | | - def tearDown(self): |
196 | | - pass |
197 | | - |
198 | 180 | def test_conflict_options_init_defaults(self): |
199 | 181 | """Test ConflictOptions initialization with default values""" |
200 | 182 | opts = ConflictOptions() |
@@ -306,12 +288,6 @@ def test_on_missing_deletes_setter_none(self): |
306 | 288 | class TestConflictEnums(unittest.TestCase): |
307 | 289 | """Test for Conflict Enums""" |
308 | 290 |
|
309 | | - def setUp(self): |
310 | | - pass |
311 | | - |
312 | | - def tearDown(self): |
313 | | - pass |
314 | | - |
315 | 291 | def test_client_write_request_on_duplicate_writes_error_value(self): |
316 | 292 | """Test ClientWriteRequestOnDuplicateWrites.ERROR value""" |
317 | 293 | self.assertEqual(ClientWriteRequestOnDuplicateWrites.ERROR.value, "error") |
|
0 commit comments