Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the meaning of 'Artifact" in software testing?

Tags:

testing

during defect raise in software testing , i came across a word "Artifact" , what it actually means? can anybody explain? I'm really frustrated by searching the actual meaning of it in google.

like image 734
vinay reddy Avatar asked Sep 02 '14 09:09

vinay reddy


People also ask

What is an artifact in testing?

What are test artifacts? Test artifacts are also known as test deliverables. These are the reports or documents created while the testing is being carried out. These help in ensuring that the stakeholders are kept informed about the progress in the project.

What is an example of a test artifact?

It usually means something like "a file created during testing". For example, the log file is an artifact. If your tests create temporary files, they are artifacts. If your test dowloads images, those are artifacts.

What are the 3 types of artifacts?

The Types of Artifacts. There are three main categories that software artifacts fall under. These are code-related artifacts, project management artifacts, and documentation.

What are the artifacts required for testing?

Test Artifacts are simply integral part of software testing. These are generally set of documents, which software project tester gets during STLC (Software Testing Life Cycle). Test artifacts are by-products that are generated or created while performing software testing.


1 Answers

It usually means something like "a file created during testing". For example, the log file is an artifact. If your tests create temporary files, they are artifacts. If your test dowloads images, those are artifacts.

Artifacts can mean other things besides files (which is why we say "artifact" rather than "file"). For example, an artifact could be a row added to a database.

Depending on the context, it could also mean files you need in order to perform the test (eg: "for this test you need the following artifacts...")

In short, an artifact is something created or used by the test suite.

like image 66
Bryan Oakley Avatar answered Sep 24 '22 23:09

Bryan Oakley