summaryrefslogtreecommitdiffstats
path: root/Libraries/Tests/ATFTests.py
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/Tests/ATFTests.py')
-rwxr-xr-xLibraries/Tests/ATFTests.py105
1 files changed, 0 insertions, 105 deletions
diff --git a/Libraries/Tests/ATFTests.py b/Libraries/Tests/ATFTests.py
deleted file mode 100755
index 245e96a..0000000
--- a/Libraries/Tests/ATFTests.py
+++ /dev/null
@@ -1,105 +0,0 @@
-#!/usr/bin/env python
-
-##############################################################################
-## ATFTests Class contains variables and methods for storing and retrieving
-## information about "TESTS" that has to be executed.
-##
-## Variables:
-## TestUnits: List of TestUnits to be run.
-##
-## KeyWords: List of keywords to be used to select tests under each
-## TestUnit.
-##
-## Version: Glusterfs version. This is used to select tests based on version
-## of Glusterfs.
-##############################################################################
-
-class Tests():
- def __init__(self):
- self.TestUnits = []
- self.KeyWords = []
- self.Version = ''
-
- def add_testunits(self, testunit):
- """
- Description:
- Add a testunit to TestUnits List
-
- Parameter:
- testunit: Name of the Testing Unit
-
- Returns:
- """
-
- self.TestUnits.append(testunit)
- return
-
- def sort_testunits(self):
- """
- Description:
- Sort the TestUnit List in Descending Order
-
- Parameter:
-
- Returns:
- """
-
- self.TestUnits.sort()
- self.TestUnits.reverse()
- return
-
- def get_testunits(self):
- """
- Description:
- Return TestUnits List
-
- Parameters:
-
- Returns:
- Success: Testunit Name
- Failure: ''
- """
-
- return self.TestUnits
-
- def add_keywords(self, keyname):
- """
- Description:
- Add Keywords to KeyWords List
-
- Parameters:
- keyname: Keyword
-
- Returns:
- """
-
- self.KeyWords.append(keyname)
- return
-
- def set_version(self, version):
- """
- Description:
- Set Glusterfs Version under test.
-
- Parameters:
- version: Glusterfs version
-
- Returns:
- """
-
- self.Version = version
- return
-
- def get_version(self):
- """
- Description:
- Returns Glusterfs Vesrion under test
-
- Parameters:
-
- Returns:
- Glusterfs Version
- """
-
- return self.Version
-