From edb79f725c4d35bc0e32d677a7aea529196af902 Mon Sep 17 00:00:00 2001 From: Julien Chataigner Date: Tue, 27 Feb 2024 16:12:56 +0100 Subject: [PATCH] ajout de tests --- matricies/test/matrice2.test | 14 ++++++++++++++ matricies/test/matrice3.test | 16 ++++++++++++++++ matricies/test/matrice4.test | 17 +++++++++++++++++ 3 files changed, 47 insertions(+) create mode 100644 matricies/test/matrice2.test create mode 100644 matricies/test/matrice3.test create mode 100644 matricies/test/matrice4.test diff --git a/matricies/test/matrice2.test b/matricies/test/matrice2.test new file mode 100644 index 0000000..0bb7abd --- /dev/null +++ b/matricies/test/matrice2.test @@ -0,0 +1,14 @@ +3 3 +1 0 1 +0 1 3 +0 4 4 + +3 3 +1 0 0 +0 1 0 +0 0 1 + +3 1 +0 +0 +0 \ No newline at end of file diff --git a/matricies/test/matrice3.test b/matricies/test/matrice3.test new file mode 100644 index 0000000..e20994e --- /dev/null +++ b/matricies/test/matrice3.test @@ -0,0 +1,16 @@ +4 3 +1 -1 0 +2 1 3 +1 2 3 +2 -2 0 + +4 2 +1 0 +1 1 +0 1 +2 0 + +3 1 +1 +1 +-1 \ No newline at end of file diff --git a/matricies/test/matrice4.test b/matricies/test/matrice4.test new file mode 100644 index 0000000..cf499b8 --- /dev/null +++ b/matricies/test/matrice4.test @@ -0,0 +1,17 @@ +4 4 +5 2 3 0 +9 0 -9 0 +1 0 -1 0 +0 0 3 -3 + +4 3 +1 0 0 +0 0 9 +0 0 1 +0 -3 0 + +4 1 +1 +-4 +1 +1 \ No newline at end of file