From f5831a8cd7f6fe54cf6d3ec693b15301516570b8 Mon Sep 17 00:00:00 2001 From: kshithijiyer Date: Thu, 27 Jun 2019 17:54:55 +0530 Subject: Converting text files to markdown files. It's better to use markdown files instead of text files for readme files. Hence converting readme files to readme.md files. Change-Id: I41c1b2f065895d885f4b1fabdc9b9e4051810e80 Signed-off-by: kshithijiyer --- tests/functional/README | 21 --------------------- tests/functional/README.md | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 21 deletions(-) delete mode 100644 tests/functional/README create mode 100644 tests/functional/README.md (limited to 'tests') diff --git a/tests/functional/README b/tests/functional/README deleted file mode 100644 index 07d029dd4..000000000 --- a/tests/functional/README +++ /dev/null @@ -1,21 +0,0 @@ -Functional Testing: - Process of validating that the software conforms to its specifications and - correctly performs its required functions. - - This entails a series of feature by feature validation of behavior using - a wide range of normal and erroneous input data. - - Functional testing divided in 3 categories: - - Build Validation tests: - Build Verification Test (BVT), also known as Build Acceptance Test, - is a set of tests run on each new build of a software to verify that - the build is testable before the build is released into further testing. - - - Smoke Testing: - A subset of test cases that are designed to broadly and minimally - test to confirm that changes in the code of a particular build - function as expected and do not break an entire build. - - - Regression: - Process of retesitng a build after bug fixes and code changes to - find any unexpected loss of functionality in the new code base. diff --git a/tests/functional/README.md b/tests/functional/README.md new file mode 100644 index 000000000..ca33fd0c3 --- /dev/null +++ b/tests/functional/README.md @@ -0,0 +1,20 @@ +# Functional Testing +Process of validating that the software conforms to its specifications and +correctly performs its required functions. This entails a series of feature +by feature validation of behavior using a wide range of normal and erroneous +input data. + +## Functional testing divided in 3 categories: +### Build Verification Tests: +Build Verification Test (BVT), also known as Build Acceptance Test, +is a set of tests run on each new build of a software to verify that +the build is testable before the build is released into further testing. + +### Smoke Testing: +A subset of test cases that are designed to broadly and minimally +test to confirm that changes in the code of a particular build +function as expected and do not break an entire build. + +### Regression: +Process of retesting a build after bug fixes and code changes to +find any unexpected loss of functionality in the new code base. \ No newline at end of file -- cgit