Skip to content

Commit 238c04e

Browse files
URJalaurfeex
andcommitted
Apply suggestions from code review
Co-authored-by: Felix Exner <[email protected]>
1 parent 08c71ed commit 238c04e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

ur_robot_driver/test/integration_test_config_controller.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ def generate_test_description(tf_prefix):
5353
return generate_driver_test_description(tf_prefix=tf_prefix)
5454

5555

56-
class RobotDriverTest(unittest.TestCase):
56+
class ConfigControllerTest(unittest.TestCase):
5757
@classmethod
5858
def setUpClass(cls):
5959
# Initialize the ROS context
6060
rclpy.init()
61-
cls.node = Node("robot_driver_test")
61+
cls.node = Node("config_controller_test")
6262
time.sleep(1)
6363
cls.init_robot(cls)
6464

ur_robot_driver/test/integration_test_io_controller.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ def generate_test_description(tf_prefix):
5454
return generate_driver_test_description(tf_prefix=tf_prefix)
5555

5656

57-
class RobotDriverTest(unittest.TestCase):
57+
class IOControllerTest(unittest.TestCase):
5858
@classmethod
5959
def setUpClass(cls):
6060
# Initialize the ROS context
6161
rclpy.init()
62-
cls.node = Node("robot_driver_test")
62+
cls.node = Node("io_controller_test")
6363
time.sleep(1)
6464
cls.init_robot(cls)
6565

ur_robot_driver/test/integration_test_passthrough_controller.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ def generate_test_description(tf_prefix):
7979
TEST_TRAJECTORY = [(time_vec[i], waypts[i]) for i in range(len(waypts))]
8080

8181

82-
class RobotDriverTest(unittest.TestCase):
82+
class PassthroughControllerTest(unittest.TestCase):
8383
@classmethod
8484
def setUpClass(cls):
8585
# Initialize the ROS context
8686
rclpy.init()
87-
cls.node = Node("robot_driver_test")
87+
cls.node = Node("passthrough_controller_test")
8888
time.sleep(1)
8989
cls.init_robot(cls)
9090

ur_robot_driver/test/integration_test_scaled_joint_controller.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ def generate_test_description(tf_prefix):
6262
return generate_driver_test_description(tf_prefix=tf_prefix)
6363

6464

65-
class RobotDriverTest(unittest.TestCase):
65+
class SJTCTest(unittest.TestCase):
6666
@classmethod
6767
def setUpClass(cls):
6868
# Initialize the ROS context
6969
rclpy.init()
70-
cls.node = Node("robot_driver_test")
70+
cls.node = Node("sjtc_test")
7171
time.sleep(1)
7272
cls.init_robot(cls)
7373

ur_robot_driver/test/test_mock_hardware.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def generate_test_description(tf_prefix):
5757
return generate_mock_hardware_test_description(tf_prefix=tf_prefix)
5858

5959

60-
class RobotDriverTest(unittest.TestCase):
60+
class MockHWTest(unittest.TestCase):
6161
@classmethod
6262
def setUpClass(cls):
6363
# Initialize the ROS context

0 commit comments

Comments
 (0)