diff --git a/tbx/app/BEARapp20a.mlapp b/tbx/app/BEARapp20a.mlapp index 5b41585..07aa8e2 100644 Binary files a/tbx/app/BEARapp20a.mlapp and b/tbx/app/BEARapp20a.mlapp differ diff --git a/tbx/app/BEARapp21a.mlapp b/tbx/app/BEARapp21a.mlapp index dadeac2..36f12ed 100644 Binary files a/tbx/app/BEARapp21a.mlapp and b/tbx/app/BEARapp21a.mlapp differ diff --git a/tests/tApp.m b/tests/tApp.m index bd1ee76..51006fc 100644 --- a/tests/tApp.m +++ b/tests/tApp.m @@ -44,6 +44,20 @@ function tFrequency(tc) end + function tFeval(tc) + + tc.choose(tc.App.APPLICATIONSTab) + tc.press(tc.App.QuickExporttoWorkspaceButton) + opts = evalin('base', 'opts'); + tc.verifyEqual(opts.Feval, false); + + tc.press(tc.App.Feval_cp); + tc.press(tc.App.QuickExporttoWorkspaceButton) + opts = evalin('base', 'opts'); + tc.verifyEqual(opts.Feval, true); + + end + end end \ No newline at end of file