@@ -171,7 +171,7 @@ TEST_F(MujocoTest, TreeTraversal) {
171171 mj_deleteSpec (spec);
172172}
173173
174- TEST_F (PluginTest , ActivatePlugin) {
174+ TEST_F (MujocoTest , ActivatePlugin) {
175175 mjSpec* spec = mj_makeSpec ();
176176 mjs_activatePlugin (spec, " mujoco.elasticity.cable" );
177177
@@ -196,7 +196,7 @@ TEST_F(PluginTest, ActivatePlugin) {
196196 mj_deleteModel (model);
197197}
198198
199- TEST_F (PluginTest , DeletePlugin) {
199+ TEST_F (MujocoTest , DeletePlugin) {
200200 mjSpec* spec = mj_makeSpec ();
201201 mjs_activatePlugin (spec, " mujoco.pid" );
202202
@@ -267,7 +267,7 @@ static constexpr char xml_plugin_2[] = R"(
267267 </actuator>
268268 </mujoco>)" ;
269269
270- TEST_F (PluginTest , AttachPlugin) {
270+ TEST_F (MujocoTest , AttachPlugin) {
271271 std::array<char , 1000 > err;
272272 mjSpec* parent = mj_parseXMLString (xml_plugin_1, 0 , err.data (), err.size ());
273273 ASSERT_THAT (parent, NotNull ()) << err.data ();
@@ -316,7 +316,7 @@ TEST_F(PluginTest, AttachPlugin) {
316316 mj_deleteSpec (spec_3);
317317}
318318
319- TEST_F (PluginTest , DetachPlugin) {
319+ TEST_F (MujocoTest , DetachPlugin) {
320320 std::array<char , 1000 > err;
321321 mjSpec* parent = mj_parseXMLString (xml_plugin_1, 0 , err.data (), err.size ());
322322 ASSERT_THAT (parent, NotNull ()) << err.data ();
@@ -342,7 +342,7 @@ TEST_F(PluginTest, DetachPlugin) {
342342 mj_deleteSpec (child);
343343}
344344
345- TEST_F (PluginTest , AttachExplicitPlugin) {
345+ TEST_F (MujocoTest , AttachExplicitPlugin) {
346346 static constexpr char xml_parent[] = R"(
347347 <mujoco model="MuJoCo Model">
348348 <worldbody>
@@ -396,7 +396,7 @@ TEST_F(PluginTest, AttachExplicitPlugin) {
396396 mj_deleteModel (model);
397397}
398398
399- TEST_F (PluginTest , ReplicatePlugin) {
399+ TEST_F (MujocoTest , ReplicatePlugin) {
400400 static constexpr char xml[] = R"(
401401 <mujoco>
402402 <extension>
@@ -429,7 +429,7 @@ TEST_F(PluginTest, ReplicatePlugin) {
429429 mj_deleteModel (model);
430430}
431431
432- TEST_F (PluginTest , ReplicateExplicitPlugin) {
432+ TEST_F (MujocoTest , ReplicateExplicitPlugin) {
433433 static constexpr char xml[] = R"(
434434 <mujoco>
435435 <extension>
@@ -484,7 +484,7 @@ TEST_F(MujocoTest, RecompileFails) {
484484 mj_deleteSpec (spec);
485485}
486486
487- TEST_F (PluginTest , ModifyShellInertiaFails) {
487+ TEST_F (MujocoTest , ModifyShellInertiaFails) {
488488 static constexpr char xml[] = R"(
489489 <mujoco>
490490 <asset>
@@ -515,7 +515,7 @@ TEST_F(PluginTest, ModifyShellInertiaFails) {
515515}
516516
517517// ------------------- test recompilation multiple files -----------------------
518- TEST_F (PluginTest , RecompileCompare) {
518+ TEST_F (MujocoTest , RecompileCompare) {
519519 mjtNum tol = 0 ;
520520 std::string field = " " ;
521521
@@ -606,7 +606,7 @@ TEST_F(PluginTest, RecompileCompare) {
606606 }
607607}
608608
609- TEST_F (PluginTest , RecompileEdit) {
609+ TEST_F (MujocoTest , RecompileEdit) {
610610 static constexpr char xml[] = R"(
611611 <mujoco>
612612 <worldbody>
@@ -640,7 +640,7 @@ TEST_F(PluginTest, RecompileEdit) {
640640
641641// ------------------- test cache with modified assets -------------------------
642642
643- TEST_F (PluginTest , RecompileCompareObjCache) {
643+ TEST_F (MujocoTest , RecompileCompareObjCache) {
644644 static constexpr char xml[] = R"(
645645 <mujoco>
646646 <asset>
@@ -716,7 +716,7 @@ static constexpr uint8_t tex2[] = {
716716 0x82
717717};
718718
719- TEST_F (PluginTest , RecompileComparePngCache) {
719+ TEST_F (MujocoTest , RecompileComparePngCache) {
720720 static constexpr char xml[] = R"(
721721 <mujoco>
722722 <asset>
@@ -753,7 +753,7 @@ TEST_F(PluginTest, RecompileComparePngCache) {
753753 mj_deleteVFS (vfs.get ());
754754}
755755
756- TEST_F (PluginTest , DisableCache) {
756+ TEST_F (MujocoTest , DisableCache) {
757757 static constexpr char xml[] = R"(
758758 <mujoco>
759759 <asset>
@@ -791,7 +791,7 @@ TEST_F(PluginTest, DisableCache) {
791791
792792// -------------------------------- test textures ------------------------------
793793
794- TEST_F (PluginTest , TextureFromBuffer) {
794+ TEST_F (MujocoTest , TextureFromBuffer) {
795795 mjSpec* spec = mj_makeSpec ();
796796
797797 mjsTexture* t1 = mjs_addTexture (spec);
0 commit comments