mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-12 21:48:25 +03:00
71 lines
2.3 KiB
Plaintext
71 lines
2.3 KiB
Plaintext
> Inclusion: ../allocations_familiales.catala_fr
|
|
|
|
# Tests
|
|
|
|
```catala
|
|
déclaration champ d'application Données:
|
|
sortie enfant1 contenu Enfant
|
|
sortie enfant2 contenu Enfant
|
|
sortie enfant3 contenu Enfant
|
|
sortie enfant4 contenu Enfant
|
|
|
|
champ d'application Données:
|
|
définition enfant1 égal à Enfant {
|
|
-- identifiant: 1
|
|
-- obligation_scolaire : Pendant
|
|
-- date_de_naissance: |2007-01-01|
|
|
-- âge: 13
|
|
-- rémuneration_mensuelle: 0€
|
|
-- prise_en_charge: EffectiveEtPermanente
|
|
-- a_déjà_ouvert_droit_aux_allocations_familiales: vrai
|
|
-- bénéficie_titre_personnel_aide_personnelle_logement: faux
|
|
}
|
|
définition enfant2 égal à Enfant {
|
|
-- identifiant: 2
|
|
-- obligation_scolaire : Après
|
|
-- date_de_naissance: |2003-01-01|
|
|
-- âge: 18
|
|
-- rémuneration_mensuelle: 1000€
|
|
-- prise_en_charge: EffectiveEtPermanente
|
|
-- a_déjà_ouvert_droit_aux_allocations_familiales: vrai
|
|
-- bénéficie_titre_personnel_aide_personnelle_logement: faux
|
|
}
|
|
définition enfant3 égal à Enfant {
|
|
-- identifiant: 3
|
|
-- obligation_scolaire : Après
|
|
-- date_de_naissance: |2003-01-01|
|
|
-- âge: 18
|
|
-- rémuneration_mensuelle: 400€
|
|
-- prise_en_charge: EffectiveEtPermanente
|
|
-- a_déjà_ouvert_droit_aux_allocations_familiales: vrai
|
|
-- bénéficie_titre_personnel_aide_personnelle_logement: faux
|
|
}
|
|
définition enfant4 égal à Enfant {
|
|
-- identifiant: 4
|
|
-- obligation_scolaire : Après
|
|
-- date_de_naissance: |1999-01-01|
|
|
-- âge: 21
|
|
-- rémuneration_mensuelle: 0€
|
|
-- prise_en_charge: EffectiveEtPermanente
|
|
-- a_déjà_ouvert_droit_aux_allocations_familiales: vrai
|
|
-- bénéficie_titre_personnel_aide_personnelle_logement: faux
|
|
}
|
|
|
|
déclaration champ d'application Test1:
|
|
données champ d'application Données
|
|
f champ d'application PrestationsFamiliales
|
|
|
|
champ d'application Test1:
|
|
définition f.date_courante égal à |2020-05-01|
|
|
définition f.prestation_courante égal à AllocationsFamiliales
|
|
définition f.résidence égal à Métropole
|
|
assertion (f.droit_ouvert de données.enfant1)
|
|
assertion (non (f.droit_ouvert de données.enfant2))
|
|
assertion (f.droit_ouvert de données.enfant3)
|
|
assertion (non (f.droit_ouvert de données.enfant4))
|
|
```
|
|
|
|
```catala-test {id="Test1.Interpret"}
|
|
catala Interpret -s Test1
|
|
```
|