From 6bad3aeb8d90578459ff7d00af27d8174328977c Mon Sep 17 00:00:00 2001 From: Christian Caremoli <> Date: Thu, 15 Nov 2007 15:54:16 +0000 Subject: [PATCH] CCAR: mise a niveau des tests automatiques avec Eficas 1.13 et Aster 9.1 --- Tests/editeur.ini | 6 ++++-- Tests/testastest/basetest.py | 2 +- Tests/testastest9/basetest.py | 2 +- Tests/testcomm/testcomm.py | 2 +- Tests/testcomm7/testcomm.py | 2 +- Tests/testcomm9/testcomm.py | 2 +- Tests/testelem/testfact1.py | 6 +++--- Tests/testelem/testitem1.py | 4 +++- Tests/testelem/testjdc1.py | 15 ++++++++------- Tests/testelem/testjdc2.py | 28 ++++++++++++++++------------ Tests/testelem/testjdc3.py | 3 ++- Tests/testelem/testjdc4.py | 3 ++- Tests/testelem/testsimp3.py | 30 +++++++++++++++--------------- Tests/testelem/testsimp4.py | 18 +++++++++--------- Tests/testelem7/testaz76.py | 2 +- Tests/testihm/testihm1.py | 8 ++++---- Tests/testihm/testihm2.py | 5 +---- Tests/testihm/testihm3.py | 5 +---- Tests/testihm/testihm4.py | 5 +---- Tests/testihm7/testihm1.py | 5 +---- Tests/testihm7/testihm2.py | 5 +---- Tests/testihm7/testihm4.py | 5 +---- Tests/testihm9/testihm1.py | 5 +---- Tests/testihm9/testihm2.py | 5 +---- Tests/testihm9/testihm3.py | 5 +---- Tests/testihm9/testihm4.py | 5 +---- 26 files changed, 82 insertions(+), 101 deletions(-) diff --git a/Tests/editeur.ini b/Tests/editeur.ini index 92b7360f..d4118db0 100644 --- a/Tests/editeur.ini +++ b/Tests/editeur.ini @@ -37,8 +37,10 @@ rep_travail = "/tmp" initialdir=os.curdir # Choix des catalogues -rep_mat=os.path.join(rep_cata,'..','materiau') -rep_mat="/local/cchris/ASTER/instals/materiaux/NEW8/materiau" +#rep_mat=os.path.join(rep_cata,'..','materiau') +rep_mat_v7="/local/cchris/ASTER/instals/materiaux/STA7" +rep_mat_v8="/local/cchris/ASTER/instals/materiaux/STA8" +rep_mat_v9="/local/cchris/ASTER/instals/materiaux/NEW9" catalogues = ( ('ASTER','petit',os.path.join(rep_cata,'petitcata'),'python'), diff --git a/Tests/testastest/basetest.py b/Tests/testastest/basetest.py index 9c58b1ff..97280757 100644 --- a/Tests/testastest/basetest.py +++ b/Tests/testastest/basetest.py @@ -2,7 +2,7 @@ import os,glob,sys import unittest import difflib -from Editeur import appli +from InterfaceTK import appli from config import ASTERDIR diff --git a/Tests/testastest9/basetest.py b/Tests/testastest9/basetest.py index 05d94bc8..253edf54 100644 --- a/Tests/testastest9/basetest.py +++ b/Tests/testastest9/basetest.py @@ -2,7 +2,7 @@ import os,glob,sys import unittest import difflib -from Editeur import appli +from InterfaceTK import appli from config import ASTERDIR diff --git a/Tests/testcomm/testcomm.py b/Tests/testcomm/testcomm.py index e3013c80..14d8981f 100644 --- a/Tests/testcomm/testcomm.py +++ b/Tests/testcomm/testcomm.py @@ -3,7 +3,7 @@ import unittest import difflib import prefs -from Editeur import appli +from InterfaceTK import appli def add_param(j,pos,nom,valeur): co=j.addentite("PARAMETRE",pos) diff --git a/Tests/testcomm7/testcomm.py b/Tests/testcomm7/testcomm.py index bc7c9379..7e9432eb 100644 --- a/Tests/testcomm7/testcomm.py +++ b/Tests/testcomm7/testcomm.py @@ -3,7 +3,7 @@ import unittest import difflib import prefs -from Editeur import appli +from InterfaceTK import appli def add_param(j,pos,nom,valeur): co=j.addentite("PARAMETRE",pos) diff --git a/Tests/testcomm9/testcomm.py b/Tests/testcomm9/testcomm.py index e211716e..a0b40af6 100644 --- a/Tests/testcomm9/testcomm.py +++ b/Tests/testcomm9/testcomm.py @@ -3,7 +3,7 @@ import unittest import difflib import prefs -from Editeur import appli +from InterfaceTK import appli def add_param(j,pos,nom,valeur): co=j.addentite("PARAMETRE",pos) diff --git a/Tests/testelem/testfact1.py b/Tests/testelem/testfact1.py index 664332c2..d1c7617b 100644 --- a/Tests/testelem/testfact1.py +++ b/Tests/testelem/testfact1.py @@ -42,9 +42,9 @@ Fin Mot cle Facteur :mcs1 cr=o.report() expected_cr="""Mot cle Facteur :mcs1 Mot-clé simple : a - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - ! 1.0 n'est pas d'un type autorisé: ('I',) ! - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! 1.0 (de type ) n'est pas d'un type autorisé: ('I',) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Fin Mot-clé simple : a Fin Mot cle Facteur :mcs1 """ diff --git a/Tests/testelem/testitem1.py b/Tests/testelem/testitem1.py index 93776064..c3f902a0 100644 --- a/Tests/testelem/testitem1.py +++ b/Tests/testelem/testitem1.py @@ -3,10 +3,12 @@ import unittest import difflib import prefs -from Editeur import appli +from InterfaceTK import appli +#from Editeur import appli from Editeur import comploader from Editeur import Objecttreeitem + def add_param(j,pos,nom,valeur): co=j.addentite("PARAMETRE",pos) co.set_nom(nom) diff --git a/Tests/testelem/testjdc1.py b/Tests/testelem/testjdc1.py index 9bee5124..1efad3b3 100644 --- a/Tests/testelem/testjdc1.py +++ b/Tests/testelem/testjdc1.py @@ -6,7 +6,8 @@ import difflib import compare import prefs -from Editeur import appli +from InterfaceTK import appli +#from Editeur import appli def add_param(j,pos,nom,valeur): co=j.addentite("PARAMETRE",pos) @@ -433,9 +434,9 @@ FIN(); ! Concept retourné non défini ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Mot-clé simple : VALE - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - ! 'sin(1.,2)' n'est pas d'un type autorisé: ('R',) ! - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! 'sin(1.,2)' (de type ) n'est pas d'un type autorisé: ('R',) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Fin Mot-clé simple : VALE Fin Etape : DEFI_LIST_REEL Etape : DEFI_LIST_REEL ligne : ... @@ -443,9 +444,9 @@ FIN(); ! Concept retourné non défini ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Mot-clé simple : VALE - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - ! 'aaa(1.)' n'est pas d'un type autorisé: ('R',) ! - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! 'aaa(1.)' (de type ) n'est pas d'un type autorisé: ('R',) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Fin Mot-clé simple : VALE Fin Etape : DEFI_LIST_REEL FIN CR validation :SansNom diff --git a/Tests/testelem/testjdc2.py b/Tests/testelem/testjdc2.py index 89430d96..78ddd294 100644 --- a/Tests/testelem/testjdc2.py +++ b/Tests/testelem/testjdc2.py @@ -27,9 +27,10 @@ co1=OP5(MATR=co0) expected="""DEBUT CR validation : bidon Etape : OP5 ligne : 5 fichier : 'bidon' Mot-clé simple : MATR - !!!!!!... - ! ... n'est pas d'un type autorisé... ! - !!!!!!... + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! concept co0 de type concept (de type ) n'est pas d'un ! + ! type autorisé: (,) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Fin Mot-clé simple : MATR Fin Etape : OP5 FIN CR validation :bidon @@ -46,9 +47,10 @@ co2=OP2(MATR=co0) expected="""DEBUT CR validation : bidon Etape : OP2 ligne : 5 fichier : 'bidon' Mot-clé simple : MATR - !!!!... - ! ... n'est pas d'un type autorisé... ! - !!!!... + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! concept co0 de type concept (de type ) n'est pas d'un ! + ! type autorisé: (, ) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Fin Mot-clé simple : MATR Fin Etape : OP2 FIN CR validation :bidon @@ -78,9 +80,10 @@ co2=OP10(MATR=CO("xx")) expected="""DEBUT CR validation : bidon Etape : OP10 ligne : 2 fichier : 'bidon' Mot-clé simple : MATR - !!!!... - ! ... n'est pas d'un type autorisé... ! - !!!!... + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! concept xx de type CO (de type ) n'est pas d'un type ! + ! autorisé: (,) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Fin Mot-clé simple : MATR Fin Etape : OP10 FIN CR validation :bidon @@ -101,9 +104,10 @@ co2=OP22(MATR=xx) expected="""DEBUT CR validation : bidon Etape : OP22 ligne : 3 fichier : 'bidon' Mot-clé simple : MATR - !!!!!!!!... - ! ... n'est pas d'un type autorisé... ! - !!!!!!!... + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! concept xx de type concept4 (de type ) n'est pas d'un ! + ! type autorisé: (,) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Fin Mot-clé simple : MATR Fin Etape : OP22 FIN CR validation :bidon diff --git a/Tests/testelem/testjdc3.py b/Tests/testelem/testjdc3.py index 4d2a936e..5a7ad9e1 100644 --- a/Tests/testelem/testjdc3.py +++ b/Tests/testelem/testjdc3.py @@ -5,7 +5,8 @@ import difflib import compare import prefs -from Editeur import appli +from InterfaceTK import appli +#from Editeur import appli from Accas import AsException def add_param(j,pos,nom,valeur): diff --git a/Tests/testelem/testjdc4.py b/Tests/testelem/testjdc4.py index 6b7f3e5c..7a07d18a 100644 --- a/Tests/testelem/testjdc4.py +++ b/Tests/testelem/testjdc4.py @@ -5,7 +5,8 @@ import difflib import compare import prefs -from Editeur import appli +from InterfaceTK import appli +#from Editeur import appli from Accas import AsException def add_param(j,pos,nom,valeur): diff --git a/Tests/testelem/testsimp3.py b/Tests/testelem/testsimp3.py index e7e1fa62..51891e9a 100644 --- a/Tests/testelem/testsimp3.py +++ b/Tests/testelem/testsimp3.py @@ -73,9 +73,9 @@ Fin Mot-cl """), (("TUTU","TATA","CCCC","TUTU","TATA",1,"TUTU","TATA","CCCC"), """Mot-clé simple : mcs - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - ! 1 n'est pas d'un type autorisé: ('TXM',) ! - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! 1 (de type ) n'est pas d'un type autorisé: ('TXM',) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! La valeur : 1 ne fait pas partie des choix possibles ('TUTU', 'TATA', 'CCCC') ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! @@ -107,31 +107,31 @@ Fin Mot-cl (myparam((2,4,4)),OK), (myparam((2,4.5,4)), """Mot-clé simple : mcs - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - ! 4.5 n'est pas d'un type autorisé: ('I',) ! - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! 4.5 (de type ) n'est pas d'un type autorisé: ('I',) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Fin Mot-clé simple : mcs """), (myparam((2,myparam(4.5),4)), """Mot-clé simple : mcs - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - ! 4.5 n'est pas d'un type autorisé: ('I',) ! - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! 4.5 (de type ) n'est pas d'un type autorisé: ('I',) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Fin Mot-clé simple : mcs """), (param((2,4,4)),OK), (param((2,4.5,4)), """Mot-clé simple : mcs - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - ! 4.5 n'est pas d'un type autorisé: ('I',) ! - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! 4.5 (de type ) n'est pas d'un type autorisé: ('I',) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Fin Mot-clé simple : mcs """), (param((2,param(4.5),4)), """Mot-clé simple : mcs - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - ! 4.5 n'est pas d'un type autorisé: ('I',) ! - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! 4.5 (de type ) n'est pas d'un type autorisé: ('I',) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Fin Mot-clé simple : mcs """), ) diff --git a/Tests/testelem/testsimp4.py b/Tests/testelem/testsimp4.py index 6519dabd..e65b3b71 100644 --- a/Tests/testelem/testsimp4.py +++ b/Tests/testelem/testsimp4.py @@ -17,9 +17,9 @@ class TestMCSimpCase(unittest.TestCase): o=cata((1,2,'aa','bb',7,'cc'),'mcs1',None) cr=o.report() expected_cr="""Mot-clé simple : mcs1 - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - ! 'aa' n'est pas d'un type autorisé: ('I',) ! - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! 'aa' (de type ) n'est pas d'un type autorisé: ('I',) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! Nombre d'arguments de (1, 2, 'aa', 'bb', 7, 'cc') incorrect (min = 1, max = 5) ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! @@ -32,9 +32,9 @@ Fin Mot-cl o=cata((1,2,'aa','bb',7,'cc'),'mcs1',None) cr=o.report() expected_cr="""Mot-clé simple : mcs1 - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - ! 'aa' n'est pas d'un type autorisé: ('I',) ! - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! 'aa' (de type ) n'est pas d'un type autorisé: ('I',) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Fin Mot-clé simple : mcs1 """ self.assertEqual(str(cr) , expected_cr,msg='Erreur :\n%s\n!=\n%s' % (str(cr),expected_cr)) @@ -83,9 +83,9 @@ Fin Mot-cl o=cata((1,2,7,"aa",4,"bb",6),'mcs1',None) cr=o.report() expected_cr="""Mot-clé simple : mcs1 - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - ! 'aa' n'est pas d'un type autorisé: ('R',) ! - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + ! 'aa' (de type ) n'est pas d'un type autorisé: ('R',) ! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! La valeur : 7 est en dehors du domaine de validité [ ** , 6 ] ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! diff --git a/Tests/testelem7/testaz76.py b/Tests/testelem7/testaz76.py index 44401008..a1e31ccd 100644 --- a/Tests/testelem7/testaz76.py +++ b/Tests/testelem7/testaz76.py @@ -6,7 +6,7 @@ import difflib import compare import prefs -from Editeur import appli +from InterfaceTK import appli def add_param(j,pos,nom,valeur): co=j.addentite("PARAMETRE",pos) diff --git a/Tests/testihm/testihm1.py b/Tests/testihm/testihm1.py index 52e49e83..dcf246d0 100644 --- a/Tests/testihm/testihm1.py +++ b/Tests/testihm/testihm1.py @@ -9,11 +9,11 @@ import Tkinter # Modules Eficas import prefs -from Editeur import eficas_go -from Editeur import splash from Editeur import session -from Editeur import eficas -from Editeur import images +from InterfaceTK import eficas_go +from InterfaceTK import splash +from InterfaceTK import eficas +from InterfaceTK import images from common import * version='v8' diff --git a/Tests/testihm/testihm2.py b/Tests/testihm/testihm2.py index b701fbb0..0bb15fbb 100644 --- a/Tests/testihm/testihm2.py +++ b/Tests/testihm/testihm2.py @@ -9,11 +9,8 @@ import Tkinter # Modules Eficas import prefs -from Editeur import eficas_go -from Editeur import splash from Editeur import session -from Editeur import eficas -from Editeur import images +from InterfaceTK import eficas_go,splash,eficas,images from common import * diff --git a/Tests/testihm/testihm3.py b/Tests/testihm/testihm3.py index 7fa615f3..f96a73b8 100644 --- a/Tests/testihm/testihm3.py +++ b/Tests/testihm/testihm3.py @@ -9,11 +9,8 @@ import Tkinter # Modules Eficas import prefs -from Editeur import eficas_go -from Editeur import splash from Editeur import session -from Editeur import eficas -from Editeur import images +from InterfaceTK import eficas_go,splash,eficas,images from common import * diff --git a/Tests/testihm/testihm4.py b/Tests/testihm/testihm4.py index 3d384921..3b3032e4 100644 --- a/Tests/testihm/testihm4.py +++ b/Tests/testihm/testihm4.py @@ -9,11 +9,8 @@ import Tkinter # Modules Eficas import prefs -from Editeur import eficas_go -from Editeur import splash from Editeur import session -from Editeur import eficas -from Editeur import images +from InterfaceTK import eficas_go,splash,eficas,images from common import * diff --git a/Tests/testihm7/testihm1.py b/Tests/testihm7/testihm1.py index 3b806c3d..78590803 100644 --- a/Tests/testihm7/testihm1.py +++ b/Tests/testihm7/testihm1.py @@ -9,11 +9,8 @@ import Tkinter # Modules Eficas import prefs -from Editeur import eficas_go -from Editeur import splash from Editeur import session -from Editeur import eficas -from Editeur import images +from InterfaceTK import eficas_go,splash,eficas,images from common import * version='v7' diff --git a/Tests/testihm7/testihm2.py b/Tests/testihm7/testihm2.py index 15d83d9f..37de0da2 100644 --- a/Tests/testihm7/testihm2.py +++ b/Tests/testihm7/testihm2.py @@ -9,11 +9,8 @@ import Tkinter # Modules Eficas import prefs -from Editeur import eficas_go -from Editeur import splash from Editeur import session -from Editeur import eficas -from Editeur import images +from InterfaceTK import eficas_go,splash,eficas,images from common import * diff --git a/Tests/testihm7/testihm4.py b/Tests/testihm7/testihm4.py index abdea69f..6dbd0025 100644 --- a/Tests/testihm7/testihm4.py +++ b/Tests/testihm7/testihm4.py @@ -9,11 +9,8 @@ import Tkinter # Modules Eficas import prefs -from Editeur import eficas_go -from Editeur import splash from Editeur import session -from Editeur import eficas -from Editeur import images +from InterfaceTK import eficas_go,splash,eficas,images from common import * diff --git a/Tests/testihm9/testihm1.py b/Tests/testihm9/testihm1.py index dab4f5e6..0c1b6699 100644 --- a/Tests/testihm9/testihm1.py +++ b/Tests/testihm9/testihm1.py @@ -9,11 +9,8 @@ import Tkinter # Modules Eficas import prefs -from Editeur import eficas_go -from Editeur import splash from Editeur import session -from Editeur import eficas -from Editeur import images +from InterfaceTK import eficas_go,splash,eficas,images from common import * version='v9' diff --git a/Tests/testihm9/testihm2.py b/Tests/testihm9/testihm2.py index ab88e845..ee3762d9 100644 --- a/Tests/testihm9/testihm2.py +++ b/Tests/testihm9/testihm2.py @@ -9,11 +9,8 @@ import Tkinter # Modules Eficas import prefs -from Editeur import eficas_go -from Editeur import splash from Editeur import session -from Editeur import eficas -from Editeur import images +from InterfaceTK import eficas_go,splash,eficas,images from common import * diff --git a/Tests/testihm9/testihm3.py b/Tests/testihm9/testihm3.py index 7fa615f3..f96a73b8 100644 --- a/Tests/testihm9/testihm3.py +++ b/Tests/testihm9/testihm3.py @@ -9,11 +9,8 @@ import Tkinter # Modules Eficas import prefs -from Editeur import eficas_go -from Editeur import splash from Editeur import session -from Editeur import eficas -from Editeur import images +from InterfaceTK import eficas_go,splash,eficas,images from common import * diff --git a/Tests/testihm9/testihm4.py b/Tests/testihm9/testihm4.py index 6e0d3547..20e44bb1 100644 --- a/Tests/testihm9/testihm4.py +++ b/Tests/testihm9/testihm4.py @@ -9,11 +9,8 @@ import Tkinter # Modules Eficas import prefs -from Editeur import eficas_go -from Editeur import splash from Editeur import session -from Editeur import eficas -from Editeur import images +from InterfaceTK import eficas_go,splash,eficas,images from common import * -- 2.39.2