Sign in
android
/
platform
/
tools
/
idea
/
1aa2e09bdbd413eacb677e9fa4b50630530d0656
/
.
/
python
/
testData
/
testRunner
/
env
/
unit
/
test1.py
blob: 8b2daad79ca8f7426e1445665efd16505e16781f [
file
] [
log
] [
blame
]
from
unittest
import
TestCase
class
UTests
(
TestCase
):
def
testOne
(
self
):
self
.
assertEqual
(
4
,
2
*
2
)
def
testTwo
(
self
):
self
.
assertTrue
(
False
or
True
)