ver. 2.18.1283

This commit is contained in:
Milan Hanajik 2019-08-07 15:22:30 +02:00
parent 142da5cbec
commit b2b0be4097
2 changed files with 17 additions and 17 deletions

View File

@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
// Build Number
// Revision
//
[assembly: AssemblyVersion("2.18.1282.0")]
[assembly: AssemblyFileVersion("2.18.1282.0")]
[assembly: AssemblyVersion("2.18.1283.0")]
[assembly: AssemblyFileVersion("2.18.1283.0")]

View File

@ -95,22 +95,22 @@ namespace TBF
{
if (isOuterLoopMode)
{
int j = i - 1;
while (j < procedure.Tests.Count)
{
Config.Entities.Test test2 = procedure.Tests[j++];
TBF.BenchControl.Generic.IComponent tm2 = TbfComponents.FindComponent(test2.Method);
if (tm2 is TBF.BenchControl.TestMethods.OuterLoop.End.Component)
{
if (r == repeats) newI = j;
break;
}
//int j = i - 1;
//while (j < procedure.Tests.Count)
//{
// Config.Entities.Test test2 = procedure.Tests[j++];
// TBF.BenchControl.Generic.IComponent tm2 = TbfComponents.FindComponent(test2.Method);
// if (tm2 is TBF.BenchControl.TestMethods.OuterLoop.End.Component)
// {
// if (r == repeats) newI = j;
// break;
// }
UiControls.TestProgressCtrl prgrs =
new UiControls.TestProgressCtrl(test2.Id, Results.Utils.GetTestName(test2.Name, test2.Repeats, r), test2.Part, Utils.TestTitle(test2, r), r, test2.Repeats);
progresses.Add(prgrs);
parent.Controls.Add(prgrs);
}
// UiControls.TestProgressCtrl prgrs =
// new UiControls.TestProgressCtrl(test2.Id, Results.Utils.GetTestName(test2.Name, test2.Repeats, r), test2.Part, Utils.TestTitle(test2, r), r, test2.Repeats);
// progresses.Add(prgrs);
// parent.Controls.Add(prgrs);
//}
}
else
{