diff --git a/product/ERP5/__init__.py b/product/ERP5/__init__.py
index f48063559da35107e995a7bee45c5961702f18ad..8e961e55d6ebefd8a29e0a59e89b59800e650f27 100755
--- a/product/ERP5/__init__.py
+++ b/product/ERP5/__init__.py
@@ -47,7 +47,7 @@ updateGlobals( this_module, globals(),
                    constraint_module = Constraint)
 
 # Define object classes and tools
-from Tool import Category, CategoryTool, SimulationTool, RuleTool, IdTool, TemplateTool
+from Tool import Category, CategoryTool, SimulationTool, RuleTool, IdTool, TemplateTool, TestTool
 import ERP5Site
 object_classes = ( Category.Category,
                    Category.BaseCategory,
@@ -57,7 +57,8 @@ portal_tools = ( CategoryTool.CategoryTool,
                  SimulationTool.SimulationTool,
                  RuleTool.RuleTool,
                  IdTool.IdTool,
-                 TemplateTool.TemplateTool
+                 TemplateTool.TemplateTool,
+                 TestTool.TestTool
                 )
 content_classes = ()
 content_constructors = ()