Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
3377141c8f18ecfed46f52a8be8228d982e32464
/
.
/
Tests
/
PythonCoverage
/
coveragetest
/
test_foo.py
blob: 51a69d89e1aba5b5636c70d78049c3e86629b633 [
file
]
import
foo
import
unittest
class
TestFoo
(
unittest
.
TestCase
):
def
testFoo
(
self
):
self
.
assertEquals
(
foo
.
foo
(),
6
,
'foo() == 6'
)
if
__name__
==
'__main__'
:
unittest
.
main
()