We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create unit tests for server.py's classes in test_server.py:
An example is:
import unittest from evora.server.server import Evora, EvoraParser class TestEvoraParser(unittest.TestCase): def setUp(self): self.evora = Evora() self.parser = EvoraParser(self.evora) def test_parse_temp(self): self.assertTrue(self.parser.parse('temp').isnumeric()) if __name__ == '__main__': unittest.main()
Expected outputs can be found in Andor SDK documentation
EvoraParser functions:
The text was updated successfully, but these errors were encountered:
Added some tests in commit 20dd468 ab874f6.
setTEC in EvoraParser is technically functional, but not sure if more test cases should be added.
setTEC
EvoraParser
Sorry, something went wrong.
No branches or pull requests
Create unit tests for server.py's classes in test_server.py:
An example is:
Expected outputs can be found in Andor SDK documentation
EvoraParser functions:
The text was updated successfully, but these errors were encountered: