From 230907717baaf38f7dd2bad59071ffccdec6331b Mon Sep 17 00:00:00 2001
From: Federico Felici <federico.felici@epfl.ch>
Date: Sat, 30 Nov 2019 17:48:44 +0100
Subject: [PATCH] Add tests for expcode print* methods

---
 tests/test_expcodes.m | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/tests/test_expcodes.m b/tests/test_expcodes.m
index baa08c8..c1fafaa 100644
--- a/tests/test_expcodes.m
+++ b/tests/test_expcodes.m
@@ -31,6 +31,26 @@ classdef test_expcodes < matlab.unittest.TestCase
       testCase.expcode_obj = getbymaincode(testCase.SCDexps,str2double(expcode_number));
     end
     
+    function test_expcode_printInfo(testCase)
+      testCase.expcode_obj.printInfo
+    end
+    
+    function test_expcode_printparameters(testCase)
+      testCase.expcode_obj.printparameters
+    end
+    
+    function test_expcode_printwavegens(testCase)
+      testCase.expcode_obj.printwavegens;
+    end
+    
+    function test_expcode_printtasks(testCase)
+      testCase.expcode_obj.printtasks;
+    end
+    
+    function test_expcode_printinits(testCase)
+      testCase.expcode_obj.printinits
+    end
+    
     function test_expcode_setup(testCase)
       fprintf('\n=== Testing callinits for expcode %d: %s === \n',...
         testCase.expcode_obj.maincode,testCase.expcode_obj.name);
-- 
GitLab