[vala/0.38] tests: Add "tuple" parser test to increase coverage
- From: Rico Tzschichholz <ricotz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/0.38] tests: Add "tuple" parser test to increase coverage
- Date: Thu, 11 Jan 2018 08:55:30 +0000 (UTC)
commit 6d8c8d26cb09205caf8ec7d23a09247d8e395ec5
Author: Rico Tzschichholz <ricotz ubuntu com>
Date: Sat Jan 6 23:52:37 2018 +0100
tests: Add "tuple" parser test to increase coverage
tests/Makefile.am | 1 +
tests/parser/tuple.vala | 14 ++++++++++++++
2 files changed, 15 insertions(+), 0 deletions(-)
---
diff --git a/tests/Makefile.am b/tests/Makefile.am
index fab9776..22ce5d1 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -314,6 +314,7 @@ TESTS = \
annotations/description.vala \
annotations/noaccessormethod.test \
parser/template.vala \
+ parser/tuple.vala \
$(NULL)
NON_NULL_TESTS = \
diff --git a/tests/parser/tuple.vala b/tests/parser/tuple.vala
new file mode 100644
index 0000000..1c16942
--- /dev/null
+++ b/tests/parser/tuple.vala
@@ -0,0 +1,14 @@
+void main () {
+ string[] FOO = { "foo", null };
+ int[] BAR = { 42, 4711 };
+
+ unowned string? s, n;
+ (s, n) = FOO;
+ assert (s == "foo");
+ assert (n == null);
+
+ int i, j;
+ (i, j) = BAR;
+ assert (i == 42);
+ assert (j == 4711);
+}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]