| Conditions | 1 |
| Total Lines | 8 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import logging |
||
| 37 | @staticmethod |
||
| 38 | def test_checkDCCIDExist(): |
||
| 39 | response_success, token = LORIS_query.login() |
||
| 40 | assert response_success |
||
| 41 | #assert len(token) == 256 # token should always be 256 char long |
||
| 42 | response_success, exist = LORIS_candidates.checkDCCIDExist(token, 272264) |
||
| 43 | assert response_success |
||
| 44 | assert exist |
||
| 45 | |||
| 49 |
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.