Adapt to new bot structure

This commit is contained in:
Marco Realacci 2024-04-04 23:24:06 +02:00
parent ff7e08ada9
commit 3f84e1d831
3414 changed files with 41525 additions and 709 deletions

View file

@ -1 +0,0 @@
{x=1, y=1}, {x=0, y=0}, {x=2, y=1}, {x=2, y=0}.

View file

@ -1,14 +0,0 @@
Il branch coverage di un insieme di test cases è la percentuale di branch del programma che sono attraversati da almeno un test case.
Si consideri la seguente funzione C:
-----------
<pre>
int f(int x, int y) {
if (x - y <= 0) { if (x + y - 1 >= 0) return (1); else return (2); }
else {if (2*x + y - 5 >= 0) return (3); else return (4); }
} /* f() */
</pre>
Quale dei seguenti test sets consegue una branch coverage del 100% ?

View file

@ -1 +0,0 @@
{x=1, y=1}, {x=0, y=0}, {x=2, y=1}, {x=2, y=3}.

View file

@ -1 +0,0 @@
{x=1, y=1}, {x=2, y=2}, {x=2, y=1}, {x=2, y=0}.