Ready to test

This commit is contained in:
2024-10-14 15:32:55 -07:00
parent 744a029359
commit 2bd3fe54a2
8 changed files with 419 additions and 158 deletions

View File

@ -974,8 +974,8 @@ public class AdaptationTesting : ISMTP
}
if (!string.IsNullOrEmpty(fileConnectorConfigurationTuple.Item2.AlternateTargetFolder))
{
if (!Directory.Exists(fileConnectorConfigurationTuple.Item2.AlternateTargetFolder))
_ = Directory.CreateDirectory(fileConnectorConfigurationTuple.Item2.AlternateTargetFolder);
if (!Directory.Exists(fileConnectorConfigurationTuple.Item2.AlternateTargetFolder.Split('|')[0]))
_ = Directory.CreateDirectory(fileConnectorConfigurationTuple.Item2.AlternateTargetFolder.Split('|')[0]);
}
}
catch (IOException ex)

View File

@ -246,4 +246,19 @@ public class PCL : LoggingUnitTesting, IDisposable
NonThrowTryCatch();
}
// private static int CH(int a) => throw new Exception();
// private static int TAR(int a) => throw new Exception();
// private static int USL(int a) => throw new Exception();
// private static int USL(int a, int b) => throw new Exception();
// private static int LSL(int a) => throw new Exception();
// private static int LSL(int a, int b) => throw new Exception();
// private static int LSL(int a, int b, int c) => throw new Exception();
[TestMethod]
public void InfinityQS()
{
// if (((CH(1) * ((((TAR(CH(21)) / CH(21)) - 1) / 2) + 1)) <= LSL(CH(1))),LSL(CH(1)),if (((CH(1) * ((((TAR(CH(21)) / CH(21)) - 1) / 2) + 1)) >= USL(CH(1))),(USL(CH(1))),(CH(1) * ((((TAR(CH(21)) / CH(21)) - 1) / 2) + 1))))
// { }
}
}