views:

73

answers:

4

is there a common term that can be used for the following tools

  1. Bugs Database
  2. Source control software
  3. a software use to compile from various programmers in one step

These tools can be used by programmers to improve teamwork, coordination and quality of code produced

+5  A: 

may be Continuous integration

Continuous integration

Arseny
That's not a catch-all term that could describe any of those things on its own. But it is a collective term that describes them all when working in combination.
Joe White
@Joe White agreed
Arseny
That would be one method that could use these tools, rather than a name for the tools. (They are useful even if you integrate more rarely.)
Pontus Gagge
+3  A: 

I would say

collaborative software development platform

At least this is what they call TFS.

Hinek
Ok, if you want to name the method, I would agree with Arseny. It's continuous integration.
Hinek
+2  A: 

Bugs database = ticket tracker

source control = source control?/versioning

a software use to compile from various programmers in one step = continuous integration/automated build process

Nealv
A: 

what about Software Team tools

Mark Kofman