test_object_add_no_collection_cylinder.py 947 B

123456789101112131415161718192021222324252627282930313233
  1. # ############################################################
  2. # Importing - Same For All Render Layer Tests
  3. # ############################################################
  4. import unittest
  5. import os
  6. import sys
  7. from view_layer_common import *
  8. # ############################################################
  9. # Testing
  10. # ############################################################
  11. class UnitTesting(ViewLayerTesting):
  12. def test_object_add_cylinder(self):
  13. """
  14. See if new objects are added to the correct collection
  15. bpy.ops.mesh.primitive_cylinder_add()
  16. """
  17. import os
  18. self.do_object_add_no_collection('CYLINDER')
  19. # ############################################################
  20. # Main - Same For All Render Layer Tests
  21. # ############################################################
  22. if __name__ == '__main__':
  23. UnitTesting._extra_arguments = setup_extra_arguments(__file__)
  24. unittest.main()