Set TDConnection = CreateObject("TDApiOle.TDConnection")
TDConnection.InitConnection "http://testdb/tdbin" 'DB URL
TDConnection.ConnectProject "projectname","username","password"
If TDConnection.Connected Then
reporter.reportevent micPass,"Connection","Connection successful"
Else
reporter.reportevent micFail,"Connection","Connection Failed"
End If
Set BugFactory = TDConnection.BugFactory
Set Bug = BugFactory.AddItem (Nothing)
Bug.Status = "New"
Bug.Summary = "Connecting to TD"
Bug.Priority = "4-Very High"
Bug.AssignedTo = "admin"
Bug.DetectedBy = "admin"
Bug.Post
Thursday, June 6, 2013
Post defect to QC
Best practices for test automation in agile software development
Agile software development is a highly iterative and collaborative approach to software development that emphasizes flexibility and adap...
-
Agile software development is a highly iterative and collaborative approach to software development that emphasizes flexibility and adap...
-
Investigation done on a software product to provide information to the stakeholders on the quality of the product, with respect to the spec...
-
Continuous integration (CI) and continuous testing (CT) are two critical components of modern software development. These practices help t...