aboutsummaryrefslogtreecommitdiff
path: root/src/argaze.test
diff options
context:
space:
mode:
authorThéo de la Hogue2023-09-06 07:31:10 +0200
committerThéo de la Hogue2023-09-06 07:31:10 +0200
commit05f5f39c93c989abfdceaff80972b16b2c55a944 (patch)
treef03521c1a6d72f103ab3337f01038a6c043b0a4c /src/argaze.test
parent543108b2a30a3baffb7758300653aa053c5d4c1c (diff)
downloadargaze-05f5f39c93c989abfdceaff80972b16b2c55a944.zip
argaze-05f5f39c93c989abfdceaff80972b16b2c55a944.tar.gz
argaze-05f5f39c93c989abfdceaff80972b16b2c55a944.tar.bz2
argaze-05f5f39c93c989abfdceaff80972b16b2c55a944.tar.xz
Renaming MiscFeatures into UtilsFeatures. Removing useless utils scripts.
Diffstat (limited to 'src/argaze.test')
-rw-r--r--src/argaze.test/GazeAnalysis/Entropy.py4
-rw-r--r--src/argaze.test/GazeAnalysis/ExploitExploreRatio.py4
-rw-r--r--src/argaze.test/GazeAnalysis/KCoefficient.py4
-rw-r--r--src/argaze.test/GazeAnalysis/LempelZivComplexity.py4
-rw-r--r--src/argaze.test/GazeAnalysis/NGram.py4
-rw-r--r--src/argaze.test/GazeAnalysis/NearestNeighborIndex.py4
-rw-r--r--src/argaze.test/GazeAnalysis/TransitionMatrix.py4
7 files changed, 14 insertions, 14 deletions
diff --git a/src/argaze.test/GazeAnalysis/Entropy.py b/src/argaze.test/GazeAnalysis/Entropy.py
index f84eca0..ee634d4 100644
--- a/src/argaze.test/GazeAnalysis/Entropy.py
+++ b/src/argaze.test/GazeAnalysis/Entropy.py
@@ -11,9 +11,9 @@ import unittest
from argaze import GazeFeatures
from argaze.GazeAnalysis import Entropy, TransitionMatrix
-from argaze.utils import MiscFeatures
+from argaze.utils import UtilsFeatures
-GazeFeaturesTest = MiscFeatures.importFromTestPackage('GazeFeatures')
+GazeFeaturesTest = UtilsFeatures.importFromTestPackage('GazeFeatures')
class TestAOIScanPathAnalyzer(unittest.TestCase):
"""Test AOIScanPathAnalyzer class."""
diff --git a/src/argaze.test/GazeAnalysis/ExploitExploreRatio.py b/src/argaze.test/GazeAnalysis/ExploitExploreRatio.py
index d788a42..0e6b74a 100644
--- a/src/argaze.test/GazeAnalysis/ExploitExploreRatio.py
+++ b/src/argaze.test/GazeAnalysis/ExploitExploreRatio.py
@@ -11,9 +11,9 @@ import unittest
from argaze import GazeFeatures
from argaze.GazeAnalysis import ExploitExploreRatio
-from argaze.utils import MiscFeatures
+from argaze.utils import UtilsFeatures
-GazeFeaturesTest = MiscFeatures.importFromTestPackage('GazeFeatures')
+GazeFeaturesTest = UtilsFeatures.importFromTestPackage('GazeFeatures')
class TestScanPathAnalyzer(unittest.TestCase):
"""Test ScanPathAnalyzer class."""
diff --git a/src/argaze.test/GazeAnalysis/KCoefficient.py b/src/argaze.test/GazeAnalysis/KCoefficient.py
index a45d3e4..beaeac3 100644
--- a/src/argaze.test/GazeAnalysis/KCoefficient.py
+++ b/src/argaze.test/GazeAnalysis/KCoefficient.py
@@ -11,9 +11,9 @@ import unittest
from argaze import GazeFeatures
from argaze.GazeAnalysis import KCoefficient
-from argaze.utils import MiscFeatures
+from argaze.utils import UtilsFeatures
-GazeFeaturesTest = MiscFeatures.importFromTestPackage('GazeFeatures')
+GazeFeaturesTest = UtilsFeatures.importFromTestPackage('GazeFeatures')
class TestScanPathAnalyzer(unittest.TestCase):
"""Test ScanPathAnalyzer class."""
diff --git a/src/argaze.test/GazeAnalysis/LempelZivComplexity.py b/src/argaze.test/GazeAnalysis/LempelZivComplexity.py
index 9f5ec84..1fdc581 100644
--- a/src/argaze.test/GazeAnalysis/LempelZivComplexity.py
+++ b/src/argaze.test/GazeAnalysis/LempelZivComplexity.py
@@ -11,9 +11,9 @@ import unittest
from argaze import GazeFeatures
from argaze.GazeAnalysis import LempelZivComplexity
-from argaze.utils import MiscFeatures
+from argaze.utils import UtilsFeatures
-GazeFeaturesTest = MiscFeatures.importFromTestPackage('GazeFeatures')
+GazeFeaturesTest = UtilsFeatures.importFromTestPackage('GazeFeatures')
class TestAOIScanPathAnalyzer(unittest.TestCase):
"""Test AOIScanPathAnalyzer class."""
diff --git a/src/argaze.test/GazeAnalysis/NGram.py b/src/argaze.test/GazeAnalysis/NGram.py
index 15e1319..a60cd64 100644
--- a/src/argaze.test/GazeAnalysis/NGram.py
+++ b/src/argaze.test/GazeAnalysis/NGram.py
@@ -11,9 +11,9 @@ import unittest
from argaze import GazeFeatures
from argaze.GazeAnalysis import NGram
-from argaze.utils import MiscFeatures
+from argaze.utils import UtilsFeatures
-GazeFeaturesTest = MiscFeatures.importFromTestPackage('GazeFeatures')
+GazeFeaturesTest = UtilsFeatures.importFromTestPackage('GazeFeatures')
class TestAOIScanPathAnalyzer(unittest.TestCase):
"""Test AOIScanPathAnalyzer class."""
diff --git a/src/argaze.test/GazeAnalysis/NearestNeighborIndex.py b/src/argaze.test/GazeAnalysis/NearestNeighborIndex.py
index c434e1e..b682f29 100644
--- a/src/argaze.test/GazeAnalysis/NearestNeighborIndex.py
+++ b/src/argaze.test/GazeAnalysis/NearestNeighborIndex.py
@@ -11,9 +11,9 @@ import unittest
from argaze import GazeFeatures
from argaze.GazeAnalysis import NearestNeighborIndex
-from argaze.utils import MiscFeatures
+from argaze.utils import UtilsFeatures
-GazeFeaturesTest = MiscFeatures.importFromTestPackage('GazeFeatures')
+GazeFeaturesTest = UtilsFeatures.importFromTestPackage('GazeFeatures')
class TestScanPathAnalyzer(unittest.TestCase):
"""Test ScanPathAnalyzer class."""
diff --git a/src/argaze.test/GazeAnalysis/TransitionMatrix.py b/src/argaze.test/GazeAnalysis/TransitionMatrix.py
index 9a2f4e7..80fbd00 100644
--- a/src/argaze.test/GazeAnalysis/TransitionMatrix.py
+++ b/src/argaze.test/GazeAnalysis/TransitionMatrix.py
@@ -11,9 +11,9 @@ import unittest
from argaze import GazeFeatures
from argaze.GazeAnalysis import TransitionMatrix
-from argaze.utils import MiscFeatures
+from argaze.utils import UtilsFeatures
-GazeFeaturesTest = MiscFeatures.importFromTestPackage('GazeFeatures')
+GazeFeaturesTest = UtilsFeatures.importFromTestPackage('GazeFeatures')
class TestAOIScanPathAnalyzer(unittest.TestCase):
"""Test AOIScanPathAnalyzer class."""