Re-write
This commit is contained in:
@ -39,60 +39,60 @@ public class Program
|
||||
if (args is null)
|
||||
throw new Exception("args is null!");
|
||||
#nullable disable
|
||||
if (Property.Models.Stateless.A_Property.IsWrongYear("-".Split(' '), "2021").Item1.HasValue)
|
||||
if (IProperty.IsWrongYear("-".Split(' '), "2021").Item1.HasValue)
|
||||
throw new Exception("-");
|
||||
if (Property.Models.Stateless.A_Property.IsWrongYear("Christmass".Split(' '), "2021").Item1.HasValue)
|
||||
if (IProperty.IsWrongYear("Christmass".Split(' '), "2021").Item1.HasValue)
|
||||
throw new Exception("Christmass");
|
||||
if (Property.Models.Stateless.A_Property.IsWrongYear("Christmass 2021".Split(' '), "2021").Item1.Value)
|
||||
if (IProperty.IsWrongYear("Christmass 2021".Split(' '), "2021").Item1.Value)
|
||||
throw new Exception("Christmass");
|
||||
if (Property.Models.Stateless.A_Property.IsWrongYear("Christmass ~2021".Split(' '), "2021").Item1.Value)
|
||||
if (IProperty.IsWrongYear("Christmass ~2021".Split(' '), "2021").Item1.Value)
|
||||
throw new Exception("Christmass");
|
||||
if (Property.Models.Stateless.A_Property.IsWrongYear("Christmass ~2021.4".Split(' '), "2021").Item1.Value)
|
||||
if (IProperty.IsWrongYear("Christmass ~2021.4".Split(' '), "2021").Item1.Value)
|
||||
throw new Exception("Christmass");
|
||||
if (!Property.Models.Stateless.A_Property.IsWrongYear("Christmass 2021".Split(' '), "2025").Item1.Value)
|
||||
if (!IProperty.IsWrongYear("Christmass 2021".Split(' '), "2025").Item1.Value)
|
||||
throw new Exception("Christmass");
|
||||
if (!Property.Models.Stateless.A_Property.IsWrongYear("Christmass ~2021".Split(' '), "2025").Item1.Value)
|
||||
if (!IProperty.IsWrongYear("Christmass ~2021".Split(' '), "2025").Item1.Value)
|
||||
throw new Exception("Christmass");
|
||||
if (!Property.Models.Stateless.A_Property.IsWrongYear("Christmass ~2021.4".Split(' '), "2025").Item1.Value)
|
||||
if (!IProperty.IsWrongYear("Christmass ~2021.4".Split(' '), "2025").Item1.Value)
|
||||
throw new Exception("Christmass");
|
||||
if (Property.Models.Stateless.A_Property.IsWrongYear("England 2017".Split(' '), "2017").Item1.Value)
|
||||
if (IProperty.IsWrongYear("England 2017".Split(' '), "2017").Item1.Value)
|
||||
throw new Exception("England");
|
||||
if (Property.Models.Stateless.A_Property.IsWrongYear("Logan Michael".Split(' '), "2021").Item1.HasValue)
|
||||
if (IProperty.IsWrongYear("Logan Michael".Split(' '), "2021").Item1.HasValue)
|
||||
throw new Exception("Logan Michael");
|
||||
if (Property.Models.Stateless.A_Property.IsWrongYear("Logan Michael 2021".Split(' '), "2021").Item1.Value)
|
||||
if (IProperty.IsWrongYear("Logan Michael 2021".Split(' '), "2021").Item1.Value)
|
||||
throw new Exception("Logan Michael");
|
||||
if (Property.Models.Stateless.A_Property.IsWrongYear("Logan Michael ~2021".Split(' '), "2021").Item1.Value)
|
||||
if (IProperty.IsWrongYear("Logan Michael ~2021".Split(' '), "2021").Item1.Value)
|
||||
throw new Exception("Logan Michael");
|
||||
if (Property.Models.Stateless.A_Property.IsWrongYear("Logan Michael ~2021.4".Split(' '), "2021").Item1.Value)
|
||||
if (IProperty.IsWrongYear("Logan Michael ~2021.4".Split(' '), "2021").Item1.Value)
|
||||
throw new Exception("Logan Michael");
|
||||
if (!Property.Models.Stateless.A_Property.IsWrongYear("Logan Michael 2021".Split(' '), "2025").Item1.Value)
|
||||
if (!IProperty.IsWrongYear("Logan Michael 2021".Split(' '), "2025").Item1.Value)
|
||||
throw new Exception("Logan Michael");
|
||||
if (!Property.Models.Stateless.A_Property.IsWrongYear("Logan Michael ~2021".Split(' '), "2025").Item1.Value)
|
||||
if (!IProperty.IsWrongYear("Logan Michael ~2021".Split(' '), "2025").Item1.Value)
|
||||
throw new Exception("Logan Michael");
|
||||
if (!Property.Models.Stateless.A_Property.IsWrongYear("Logan Michael ~2021.4".Split(' '), "2025").Item1.Value)
|
||||
if (!IProperty.IsWrongYear("Logan Michael ~2021.4".Split(' '), "2025").Item1.Value)
|
||||
throw new Exception("Logan Michael");
|
||||
if (Property.Models.Stateless.A_Property.IsWrongYear("Logan Michael ~2021.4".Split(' '), "2021").Item2[0] != "~2021.4")
|
||||
if (IProperty.IsWrongYear("Logan Michael ~2021.4".Split(' '), "2021").Item2[0] != "~2021.4")
|
||||
throw new Exception("Logan Michael");
|
||||
if (Property.Models.Stateless.A_Property.IsWrongYear("Chelsea's 2nd Birthday =2014".Split(' '), "2014").Item1.Value)
|
||||
if (IProperty.IsWrongYear("Chelsea's 2nd Birthday =2014".Split(' '), "2014").Item1.Value)
|
||||
throw new Exception("Chelsea");
|
||||
#nullable restore
|
||||
if (Property.Models.Stateless.IPath.GetDirectoryNames(@"C:\Tmp")[0] != @"C:\")
|
||||
if (IPath.GetDirectoryNames(@"C:\Tmp")[0] != @"C:\")
|
||||
throw new Exception();
|
||||
if (Property.Models.Stateless.IPath.GetDirectoryNames(@"C:\Tmp")[1] != "Tmp")
|
||||
if (IPath.GetDirectoryNames(@"C:\Tmp")[1] != "Tmp")
|
||||
throw new Exception();
|
||||
if (Property.Models.Stateless.IPath.GetDirectoryNames(@"C:\Tmp\mike.txt")[1] != "Tmp")
|
||||
if (IPath.GetDirectoryNames(@"C:\Tmp\mike.txt")[1] != "Tmp")
|
||||
throw new Exception();
|
||||
if (Property.Models.Stateless.IPath.GetDirectoryNames(@"C:\Tmp\a.txt")[1] != "Tmp")
|
||||
if (IPath.GetDirectoryNames(@"C:\Tmp\a.txt")[1] != "Tmp")
|
||||
throw new Exception();
|
||||
if (Property.Models.Stateless.IPath.GetDirectoryNames(@"C:\Tmp\Mike\a.txt")[2] != "Mike")
|
||||
if (IPath.GetDirectoryNames(@"C:\Tmp\Mike\a.txt")[2] != "Mike")
|
||||
throw new Exception();
|
||||
if (Property.Models.Stateless.IPath.GetDirectoryNames(@"I:\Images 2019-06-08 - 34a9240ac28b52da97428d7725153a80a757ee6b - II\=2010.2 Summer\Dsc_8558.jpg")[0] != @"I:\")
|
||||
if (IPath.GetDirectoryNames(@"I:\Images 2019-06-08 - 34a9240ac28b52da97428d7725153a80a757ee6b - II\=2010.2 Summer\Dsc_8558.jpg")[0] != @"I:\")
|
||||
throw new Exception();
|
||||
if (Property.Models.Stateless.IPath.GetDirectoryNames(@"I:\Images 2019-06-08 - 34a9240ac28b52da97428d7725153a80a757ee6b - II\=2010.2 Summer\Dsc_8558.jpg")[1] != @"Images 2019-06-08 - 34a9240ac28b52da97428d7725153a80a757ee6b - II")
|
||||
if (IPath.GetDirectoryNames(@"I:\Images 2019-06-08 - 34a9240ac28b52da97428d7725153a80a757ee6b - II\=2010.2 Summer\Dsc_8558.jpg")[1] != @"Images 2019-06-08 - 34a9240ac28b52da97428d7725153a80a757ee6b - II")
|
||||
throw new Exception();
|
||||
if (Property.Models.Stateless.IPath.GetDirectoryNames(@"I:\Images 2019-06-08 - 34a9240ac28b52da97428d7725153a80a757ee6b - II\=2010.2 Summer\Dsc_8558.jpg")[2] != @"=2010.2 Summer")
|
||||
if (IPath.GetDirectoryNames(@"I:\Images 2019-06-08 - 34a9240ac28b52da97428d7725153a80a757ee6b - II\=2010.2 Summer\Dsc_8558.jpg")[2] != @"=2010.2 Summer")
|
||||
throw new Exception();
|
||||
if (Property.Models.Stateless.IPath.GetDirectoryNames(@"I:\Images 2019-06-08 - 34a9240ac28b52da97428d7725153a80a757ee6b - II\=2010.2 Summer")[2] != @"=2010.2 Summer")
|
||||
if (IPath.GetDirectoryNames(@"I:\Images 2019-06-08 - 34a9240ac28b52da97428d7725153a80a757ee6b - II\=2010.2 Summer")[2] != @"=2010.2 Summer")
|
||||
throw new Exception();
|
||||
Shared.Models.Console console = new();
|
||||
NotCopyCopy _ = new(args, isEnvironment, configurationRoot, appSettings, workingDirectory, silentIndex > -1, console);
|
||||
|
Reference in New Issue
Block a user