Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
refs/heads/master
/
.
/
Tests
/
PythonCoverage
/
coveragetest
/
test_foo.py
blob: 51a69d89e1aba5b5636c70d78049c3e86629b633 [
file
] [
log
] [
blame
] [
edit
]
import
foo
import
unittest
class
TestFoo
(
unittest
.
TestCase
):
def
testFoo
(
self
):
self
.
assertEquals
(
foo
.
foo
(),
6
,
'foo() == 6'
)
if
__name__
==
'__main__'
:
unittest
.
main
()