From 05f5f39c93c989abfdceaff80972b16b2c55a944 Mon Sep 17 00:00:00 2001 From: Théo de la Hogue Date: Wed, 6 Sep 2023 07:31:10 +0200 Subject: Renaming MiscFeatures into UtilsFeatures. Removing useless utils scripts. --- src/argaze.test/GazeAnalysis/Entropy.py | 4 ++-- src/argaze.test/GazeAnalysis/ExploitExploreRatio.py | 4 ++-- src/argaze.test/GazeAnalysis/KCoefficient.py | 4 ++-- src/argaze.test/GazeAnalysis/LempelZivComplexity.py | 4 ++-- src/argaze.test/GazeAnalysis/NGram.py | 4 ++-- src/argaze.test/GazeAnalysis/NearestNeighborIndex.py | 4 ++-- src/argaze.test/GazeAnalysis/TransitionMatrix.py | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) (limited to 'src/argaze.test/GazeAnalysis') 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.""" -- cgit v1.1