]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
Ajout d un OPER pour tests
authorEric Fayolle <eric.fayolle@edf.fr>
Tue, 5 Apr 2022 13:22:41 +0000 (15:22 +0200)
committerEric Fayolle <eric.fayolle@edf.fr>
Tue, 5 Apr 2022 13:22:41 +0000 (15:22 +0200)
WebTest/cata_essai.py

index 1e23555104fe1d3871790118d093c47eae12eef2..f4577dff711e0f65873c48b8dbe8e9b2256755ee 100644 (file)
@@ -2,9 +2,12 @@
 #
 
 from Accas import *
+class MYOPER(ASSD) : pass
 
 JdC   = JDC_CATA(code='Test1',)
-
+MonOper=OPER(nom="MonOper", sd_prod=MYOPER,
+    param1 = SIMP(statut='o',typ='R'),
+)
 MonProc = PROC(nom='MonProc',
     param1 = SIMP(statut='o',typ='R'),
 )
@@ -24,12 +27,16 @@ MonProc2 = PROC(nom='MonProc2',
         ),
         param2_inBloc = SIMP(statut='o',typ='R'),
     ),
-    Fact1  = FACT (statut ='o', max=2
-        paramInFact1 = SIMP(statut='o',typ='R'),
+    Fact1  = FACT (statut ='o', max=4
+        paramInFact1 = SIMP(statut='o',typ='R',max=1),
     ),
     Fact2  = FACT (statut ='f',
         param3InFact2 = SIMP(statut='o',typ='R'),
         paramFacultatif = SIMP(statut='f',typ='R'),
     ),
+    Fact3  = FACT (statut ='f',
+        param1InFact3 = SIMP(statut='f',typ='R'),
+        paramFacultatif = SIMP(statut='f',typ='R'),
+    ),
 )