view testing/utp_1.1/search_results.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +0100
parents 409a22968d5e
children
line wrap: on
line source

function out = search_results(results, utp_name)
  
  out = [];
  
  for kk=1:numel(results)
    r = results(kk);
    name = ['utp_' r.class '_' r.method '_' r.num];
    if strcmpi(name, utp_name)
      kk
      out = r;
    end
  end
  
end