Updates to Isolator class interfaces

Change-Id: I9c7abeba489507de9f4a2a075a5c94d7fcf25247
Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
diff --git a/test/simulator/hei_sim_main.cpp b/test/simulator/hei_sim_main.cpp
index 41ffe7f..e83a577 100644
--- a/test/simulator/hei_sim_main.cpp
+++ b/test/simulator/hei_sim_main.cpp
@@ -4,9 +4,16 @@
 {
     libhei::Isolator iso;
 
-    iso.initialize();
+    void * buffer = nullptr;
+    size_t sz_buffer = 0;
 
-    iso.isolate();
+    iso.initialize( buffer, sz_buffer );
+
+    void * chip = nullptr;
+    libhei::ChipType_t chipType = 0;
+    libhei::IsolationData isoData;
+
+    iso.isolate( chip, chipType, isoData );
 
     return 0;
 }