
Story: 2008529 Task: 41923 Signed-off-by: Bin Yang <bin.yang@windriver.com> Change-Id: Icd665ffff700f1d915233ee3630ffd8ec5c5d923
14 lines
204 B
Python
14 lines
204 B
Python
#
|
|
# Copyright (c) 2021 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
from unittest import TestCase
|
|
|
|
|
|
class TestUnits(TestCase):
|
|
|
|
def test_units(self):
|
|
assert 5 * 5 == 25
|