Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
a3358bb66aeef19fc2748dfd92da7f54223c0f3b
/
.
/
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
()