forked from gazebosim/sdformat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyAirPressure_TEST.py
61 lines (45 loc) · 1.84 KB
/
pyAirPressure_TEST.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright (C) 2022 Open Source Robotics Foundation
# Licensed under the Apache License, Version 2.0 (the "License")
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from sdformat13 import AirPressure, Noise
import sdformat13 as sdf
import unittest
class AtmosphereTEST(unittest.TestCase):
def test_default_construction(self):
air = AirPressure()
defaultNoise = Noise()
self.assertEqual(defaultNoise, air.pressure_noise())
self.assertAlmostEqual(0.0, air.reference_altitude())
def test_set(self):
air = AirPressure()
defaultNoise = Noise()
noise = Noise()
self.assertEqual(defaultNoise, air.pressure_noise())
self.assertAlmostEqual(0.0, air.reference_altitude())
noise.set_type(sdf.NoiseType.GAUSSIAN)
noise.set_mean(1.2)
noise.set_std_dev(2.3)
noise.set_bias_mean(4.5)
noise.set_bias_std_dev(6.7)
noise.set_precision(8.9)
air.set_pressure_noise(noise)
self.assertEqual(noise, air.pressure_noise())
air.set_reference_altitude(10.2)
self.assertAlmostEqual(10.2, air.reference_altitude())
# Copy Constructor
air2 = AirPressure(air)
self.assertEqual(air, air2)
# Copy operator
air3 = air
self.assertEqual(air, air3)
air4 = AirPressure()
self.assertNotEqual(air3, air4);
if __name__ == '__main__':
unittest.main()