Skip to content
Snippets Groups Projects
Commit a94e293c authored by Virgile Prevosto's avatar Virgile Prevosto Committed by Andre Maroneze
Browse files

[mdr] fix spelling of Eva

parent e45e5542
No related branches found
No related tags found
No related merge requests found
...@@ -192,7 +192,7 @@ let md_gen () = ...@@ -192,7 +192,7 @@ let md_gen () =
let summary_whole = let summary_whole =
Markdown.format Markdown.format
"There are %d function definitions that are not stubbed. They represent \ "There are %d function definitions that are not stubbed. They represent \
%d statements, of which %d are potentially reachable through EVA, \ %d statements, of which %d are potentially reachable through Eva, \
resulting in a **statement coverage of %.1f%%** with respect to the \ resulting in a **statement coverage of %.1f%%** with respect to the \
entire application." entire application."
(nb_fundefs()) (nb_fundefs())
...@@ -220,7 +220,7 @@ let md_gen () = ...@@ -220,7 +220,7 @@ let md_gen () =
summary @ summary @
Markdown.format Markdown.format
"These functions contain %d statements, \ "These functions contain %d statements, \
of which %d are potentially reachable according to EVA, resulting in \ of which %d are potentially reachable according to Eva, resulting in \
a **statement coverage of %.1f%%** with respect to the perimeter set \ a **statement coverage of %.1f%%** with respect to the perimeter set \
by this entry point." by this entry point."
stats.total_stmts stats.covered_stmts stats.total_stmts stats.covered_stmts
......
...@@ -57,10 +57,10 @@ let get_eva_domains () = ...@@ -57,10 +57,10 @@ let get_eva_domains () =
let section_domains env = let section_domains env =
let anchor = "domains" in let anchor = "domains" in
let head = H3 (plain "EVA Domains", Some anchor) in let head = H3 (plain "Eva Domains", Some anchor) in
if env.is_draft then if env.is_draft then
head head
:: Comment "You can give more information about the choice of EVA domains" :: Comment "You can give more information about the choice of Eva domains"
:: insert_marks env anchor :: insert_marks env anchor
else begin else begin
let l = get_eva_domains () in let l = get_eva_domains () in
...@@ -76,7 +76,7 @@ let section_domains env = ...@@ -76,7 +76,7 @@ let section_domains env =
[Text [Text
(plain (plain
"In addition to the base domain (`cvalue`), additional \ "In addition to the base domain (`cvalue`), additional \
domains have been used by EVA"); domains have been used by Eva");
DL l] DL l]
) )
:: insert_remark env anchor :: insert_remark env anchor
...@@ -275,7 +275,7 @@ let gen_coverage env = ...@@ -275,7 +275,7 @@ let gen_coverage env =
let content = let content =
if env.is_draft then if env.is_draft then
content @ content @
Comment "You can comment on the coverage obtained by EVA" Comment "You can comment on the coverage obtained by Eva"
:: insert_marks env anchor :: insert_marks env anchor
else else
content @ insert_remark env anchor content @ insert_remark env anchor
......
...@@ -26,7 +26,7 @@ that have been considered during the analysis are the following: ...@@ -26,7 +26,7 @@ that have been considered during the analysis are the following:
## Configuration {#options} ## Configuration {#options}
### EVA Domains {#domains} ### Eva Domains {#domains}
Only the base domain (`cvalue`) has been used for the analysis Only the base domain (`cvalue`) has been used for the analysis
...@@ -38,11 +38,11 @@ No stubs have been used for this analysis ...@@ -38,11 +38,11 @@ No stubs have been used for this analysis
# Coverage {#coverage} # Coverage {#coverage}
There are 6 function definitions that are not stubbed. They represent 50 statements, of which 50 are potentially reachable through EVA, resulting in a **statement coverage of 100.0%** with respect to the entire application. There are 6 function definitions that are not stubbed. They represent 50 statements, of which 50 are potentially reachable through Eva, resulting in a **statement coverage of 100.0%** with respect to the entire application.
There were potentially 6 functions syntactically reachable from main. There were potentially 6 functions syntactically reachable from main.
These functions contain 50 statements, of which 50 are potentially reachable according to EVA, resulting in a **statement coverage of 100.0%** with respect to the perimeter set by this entry point. These functions contain 50 statements, of which 50 are potentially reachable according to Eva, resulting in a **statement coverage of 100.0%** with respect to the perimeter set by this entry point.
# Warnings {#warnings} # Warnings {#warnings}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment