Why is SIT called SIT when it serves for system testing

integrationterminologytesting

I should define a testing strategy and environments and I have encountered rather terminology issue (but might well be my fault) so I hope someone will correct me here.
We are using INT environment where the application is deployed at first and then SIT environment, where is the app passed if it is fine on INT. So, testers do all system tests on SIT.
But according to all definitons, SIT is system integration testing which is done after the system tests and validates cooperation of more systems.
So why SIT serves actually for system testing, yet it is said to be a phase which actually follows the system testing?
EDIT: According to common knowledge-books:

  1. Unit
  2. Integration (modules to larger pieces)
  3. System test
  4. ().. System Integration Test –if there are more system to integrate

Our apps consist of db, services, frontend. So to make a system test, they must be integrated, otherwise testers cannot do anything. So SIT precedes actual system testing (both funtional and non functional) which does not match with described processes. And environment for testers is also called SIT..

Best Answer

I think there are two possible views and issues:

  1. Companies tend to use "system integration testing" / SIT for testing of their application, integrated of more sub-systems. An "INT" environment is usually the first instance that serves as a testing place for developers trying to integrate the app to a working whole. Once they have a stable system on the "INT", it is promoted to "SIT". In this context, it would not mean "integration with external systems rather than integration of sub-systems".
  2. Application could be deployed to "SIT" for system testing and if it passes, on this very same environment it is used for real external system integration. In that case, once the system testing is considered as finished, without any changes to the environment, external systems would be integrated. Also the name "SIT" would reflect what is this environment used for (you do system testing there but eventually it is used for SIT). In this case it is a combination of system testing and system integration, which is not unusual.