Skip to content

Commit f314330

Browse files
committed
. F added Testing for Combinations.
1 parent ddb6239 commit f314330

File tree

8 files changed

+39
-11
lines changed

8 files changed

+39
-11
lines changed

Approval Tests/Verify.vi

-24 Bytes
Binary file not shown.

Extensions/Caraya.Extension/Caraya.Extension.lvlib

+1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
<Item Name="Verify as JSON.vi" Type="VI" URL="../Verify as JSON.vi"/>
1111
<Item Name="Verify Combinations.vi" Type="VI" URL="../Verify Combinations.vi"/>
1212
<Item Name="Verify File.vi" Type="VI" URL="../Verify File.vi"/>
13+
<Item Name="Verify Parameterized.vi" Type="VI" URL="../Verify Parameterized.vi"/>
1314
<Item Name="Verify.vi" Type="VI" URL="../Verify.vi"/>
1415
</Library>
Binary file not shown.

Tests/Caraya.Tests/Caraya Extension Tests/Caraya Extension Tests.lvclass

+18-9
Large diffs are not rendered by default.

Tests/Caraya.Tests/Caraya Extension Tests/Verify AND Combos.approved.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
},
66
{
77
"Input":{"A":false,"B":true},
8-
"Results":{"A and B":false}
8+
"Results":{"A and B":true}
99
},
1010
{
1111
"Input":{"A":true,"B":false},
12-
"Results":{"A and B":false}
12+
"Results":{"A and B":true}
1313
},
1414
{
1515
"Input":{"A":true,"B":true},
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[
2+
{
3+
"Input":{"A":false,"B":false},
4+
"Results":{"A and B":false}
5+
},
6+
{
7+
"Input":{"A":false,"B":true},
8+
"Results":{"A and B":false}
9+
},
10+
{
11+
"Input":{"A":true,"B":false},
12+
"Results":{"A and B":false}
13+
},
14+
{
15+
"Input":{"A":true,"B":true},
16+
"Results":{"A and B":true}
17+
}
18+
]
Binary file not shown.

Tests/Common/MyAnd.vi

-12 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)