Retrieves the name of the settings profile that the current virtual user uses.
Kernel.bdh
GetProfile(): string;
The name of the profile.
dcluser user TestUser transactions TGetProfile : 1; dcltrans transaction TGetProfile var sProfile: string; begin sProfile := GetProfile(); write("profile = "); write(sProfile); writeln; end TGetProfile;
profile = Loadtest