mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
36 lines
353 B
Python
36 lines
353 B
Python
|
|
class Test:
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def test_1(self):
|
|
pass
|
|
|
|
def test_2(self):
|
|
pass
|
|
|
|
def test_3(self):
|
|
pass
|
|
|
|
|
|
import pytest
|
|
|
|
def test_something(x):
|
|
pass
|
|
|
|
|
|
def with_doctest():
|
|
'''
|
|
>>> 1 + 1
|
|
2
|
|
|
|
>>> 1 * 1
|
|
1
|
|
'''
|
|
|
|
def without_doctest():
|
|
pass |