diff --git a/src/Lab1/IRoute.cs b/src/Lab1/IRoute.cs new file mode 100644 index 0000000..7970d4e --- /dev/null +++ b/src/Lab1/IRoute.cs @@ -0,0 +1,8 @@ +using Itmo.ObjectOrientedProgramming.Lab1.Models; + +namespace Itmo.ObjectOrientedProgramming.Lab1; + +public interface IRoute +{ + Success Traverse(ITrain train); +} diff --git a/src/Lab1/Models/ITrain.cs b/src/Lab1/Models/ITrain.cs new file mode 100644 index 0000000..79fde25 --- /dev/null +++ b/src/Lab1/Models/ITrain.cs @@ -0,0 +1,12 @@ +namespace Itmo.ObjectOrientedProgramming.Lab1.Models; + +public interface ITrain +{ + double Speed { get; } + + Success ApplyForce(double force); + + Success TravelDistance(double distance); + + void ResetAcceleration(); +} diff --git a/src/Lab1/Models/Result.cs b/src/Lab1/Models/Result.cs new file mode 100644 index 0000000..176c7ca --- /dev/null +++ b/src/Lab1/Models/Result.cs @@ -0,0 +1,7 @@ +namespace Itmo.ObjectOrientedProgramming.Lab1.Models; + +public record Success(double Time, string? ErrorMessage = null) +{ + public bool IsSuccess => ErrorMessage == null; + public bool IsFailure => ErrorMessage != null; +} \ No newline at end of file diff --git a/src/Lab1/Models/Train.cs b/src/Lab1/Models/Train.cs new file mode 100644 index 0000000..9c47887 --- /dev/null +++ b/src/Lab1/Models/Train.cs @@ -0,0 +1,75 @@ +namespace Itmo.ObjectOrientedProgramming.Lab1.Models; + +public class Train : ITrain +{ + private readonly TrainSpecifications specs; + private double speed; + private double acceleration; + + public Train(TrainSpecifications specifications) + { + this.specs = specifications; + speed = 0; + acceleration = 0; + } + + public double Mass => specs.Mass; + + public double MaxForce => specs.MaxForce; + + public double Precision => specs.Precision; + + public double Speed => speed; + + public double Acceleration => acceleration; + + public Success ApplyForce(double force) + { + if (Math.Abs(force) > MaxForce) + { + return new Success(0, "Приложенная сила превышает максимально допустимую"); + } + + acceleration = force / Mass; + return new Success(0); + } + + public Success TravelDistance(double distance) + { + if (distance <= 0) + { + return new Success(0); + } + + double distanceRemaining = distance; + double elapsedTime = 0; + + while (distanceRemaining > 0) + { + if (speed == 0 && acceleration == 0) + { + return new Success(0, "Поезд не может пройти расстояние без скорости и ускорения"); + } + + double newSpeed = speed + (acceleration * Precision); + + if (newSpeed < 0) + { + return new Success(0, "Скорость поезда стала отрицательной"); + } + + double distanceTraveled = newSpeed * Precision; + + distanceRemaining -= distanceTraveled; + speed = newSpeed; + elapsedTime += Precision; + } + + return new Success(elapsedTime); + } + + public void ResetAcceleration() + { + acceleration = 0; + } +} diff --git a/src/Lab1/Models/TrainSpecifications.cs b/src/Lab1/Models/TrainSpecifications.cs new file mode 100644 index 0000000..9f1eee5 --- /dev/null +++ b/src/Lab1/Models/TrainSpecifications.cs @@ -0,0 +1,26 @@ +namespace Itmo.ObjectOrientedProgramming.Lab1.Models; + +public class TrainSpecifications +{ + public double Mass { get; } + + public double MaxForce { get; } + + public double Precision { get; } + + public TrainSpecifications(double mass, double maxForce, double precision) + { + if (mass <= 0) + throw new ArgumentException("Масса должна быть положительной", nameof(mass)); + + if (maxForce <= 0) + throw new ArgumentException("Максимальная сила должна быть положительной", nameof(maxForce)); + + if (precision <= 0) + throw new ArgumentException("Точность должна быть положительной", nameof(precision)); + + Mass = mass; + MaxForce = maxForce; + Precision = precision; + } +} diff --git a/src/Lab1/Route.cs b/src/Lab1/Route.cs new file mode 100644 index 0000000..ace58a1 --- /dev/null +++ b/src/Lab1/Route.cs @@ -0,0 +1,40 @@ +using Itmo.ObjectOrientedProgramming.Lab1.Models; +using Itmo.ObjectOrientedProgramming.Lab1.RouteSegments; + +namespace Itmo.ObjectOrientedProgramming.Lab1; + +public class Route : IRoute +{ + private readonly IReadOnlyCollection segments; + private readonly double speedLimit; + + public Route(IReadOnlyCollection segments, double speedLimit) + { + this.segments = segments; + this.speedLimit = speedLimit; + } + + public Success Traverse(ITrain train) + { + double totalElapsedTime = 0; + + foreach (IRouteSegment segment in segments) + { + Success segmentResult = segment.Traverse(train); + + if (segmentResult.IsFailure) + { + return segmentResult; + } + + totalElapsedTime += segmentResult.Time; + } + + if (train.Speed > speedLimit) + { + return new Success(totalElapsedTime, $"Скорость поезда ({train.Speed}) превышает лимит маршрута ({speedLimit})"); + } + + return new Success(totalElapsedTime); + } +} diff --git a/src/Lab1/RouteSegments/EnergyPath.cs b/src/Lab1/RouteSegments/EnergyPath.cs new file mode 100644 index 0000000..a6869db --- /dev/null +++ b/src/Lab1/RouteSegments/EnergyPath.cs @@ -0,0 +1,30 @@ +using Itmo.ObjectOrientedProgramming.Lab1.Models; + +namespace Itmo.ObjectOrientedProgramming.Lab1.RouteSegments; + +public class EnergyPath : IRouteSegment +{ + private readonly double distance; + private readonly double force; + + public EnergyPath(double distance, double force) + { + this.distance = distance; + this.force = force; + } + + public Success Traverse(ITrain train) + { + Success forceApplicationResult = train.ApplyForce(force); + if (forceApplicationResult.IsFailure) + { + return forceApplicationResult; + } + + Success distanceTravelResult = train.TravelDistance(distance); + + train.ResetAcceleration(); + + return distanceTravelResult; + } +} diff --git a/src/Lab1/RouteSegments/IRouteSegment.cs b/src/Lab1/RouteSegments/IRouteSegment.cs new file mode 100644 index 0000000..049bba9 --- /dev/null +++ b/src/Lab1/RouteSegments/IRouteSegment.cs @@ -0,0 +1,8 @@ +using Itmo.ObjectOrientedProgramming.Lab1.Models; + +namespace Itmo.ObjectOrientedProgramming.Lab1.RouteSegments; + +public interface IRouteSegment +{ + Success Traverse(ITrain train); +} diff --git a/src/Lab1/RouteSegments/RegularPath.cs b/src/Lab1/RouteSegments/RegularPath.cs new file mode 100644 index 0000000..07275f6 --- /dev/null +++ b/src/Lab1/RouteSegments/RegularPath.cs @@ -0,0 +1,18 @@ +using Itmo.ObjectOrientedProgramming.Lab1.Models; + +namespace Itmo.ObjectOrientedProgramming.Lab1.RouteSegments; + +public class RegularPath : IRouteSegment +{ + private readonly double distance; + + public RegularPath(double distance) + { + this.distance = distance; + } + + public Success Traverse(ITrain train) + { + return train.TravelDistance(distance); + } +} diff --git a/src/Lab1/RouteSegments/Station.cs b/src/Lab1/RouteSegments/Station.cs new file mode 100644 index 0000000..48a38e4 --- /dev/null +++ b/src/Lab1/RouteSegments/Station.cs @@ -0,0 +1,27 @@ +using Itmo.ObjectOrientedProgramming.Lab1.Models; + +namespace Itmo.ObjectOrientedProgramming.Lab1.RouteSegments; + +public class Station : IRouteSegment +{ + private readonly double speedLimit; + private readonly double passengerLoadTime; + + public Station(double speedLimit, double passengerLoadTime) + { + this.speedLimit = speedLimit; + this.passengerLoadTime = passengerLoadTime; + } + + public Success Traverse(ITrain train) + { + if (train.Speed > speedLimit) + { + return new Success(0, $"Скорость поезда ({train.Speed}) превышает лимит станции ({speedLimit})"); + } + + double totalElapsedTime = passengerLoadTime; + + return new Success(totalElapsedTime); + } +} diff --git a/src/Lab1/bin/Debug/net9.0/Lab1.deps.json b/src/Lab1/bin/Debug/net9.0/Lab1.deps.json new file mode 100644 index 0000000..a6bc563 --- /dev/null +++ b/src/Lab1/bin/Debug/net9.0/Lab1.deps.json @@ -0,0 +1,135 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Lab1/1.0.0": { + "dependencies": { + "Itmo.Dev.Editorconfig": "1.0.12", + "SourceKit.Analyzers.Collections": "1.0.50", + "SourceKit.Analyzers.Enumerable": "1.0.50", + "SourceKit.Analyzers.MemberAccessibility": "1.0.31", + "SourceKit.Analyzers.Nullable": "1.0.50", + "SourceKit.Analyzers.Properties": "1.0.50", + "StyleCop.Analyzers": "1.2.0-beta.507" + }, + "runtime": { + "Lab1.dll": {} + } + }, + "Itmo.Dev.Editorconfig/1.0.12": { + "runtime": { + "lib/netstandard2.0/Itmo.Dev.Editorconfig.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "SourceKit/1.1.50": {}, + "SourceKit.Analyzers.Collections/1.0.50": { + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "SourceKit.Analyzers.Enumerable/1.0.50": { + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "SourceKit.Analyzers.MemberAccessibility/1.0.31": { + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "SourceKit.Analyzers.Nullable/1.0.50": { + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "SourceKit.Analyzers.Properties/1.0.50": { + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "StyleCop.Analyzers/1.2.0-beta.507": { + "dependencies": { + "StyleCop.Analyzers.Unstable": "1.2.0.507" + } + }, + "StyleCop.Analyzers.Unstable/1.2.0.507": {} + } + }, + "libraries": { + "Lab1/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Itmo.Dev.Editorconfig/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+JwouEfM+SsBCCmP2h2escdpPF1Mx+kTms+lI2kjUaZyBOzR1Xt/LEhrwTQ2pd7cQ9Qpr/ul2MZehGIgUmgRxQ==", + "path": "itmo.dev.editorconfig/1.0.12", + "hashPath": "itmo.dev.editorconfig.1.0.12.nupkg.sha512" + }, + "SourceKit/1.1.50": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dxG3n6AN1gO3w0cX8ebfH21K+Ga2W9ro+RN1vzJ6NAF8YSzq2HeEnYGVkVHnR8t9M2jklQnHBetbOnB6vaViQA==", + "path": "sourcekit/1.1.50", + "hashPath": "sourcekit.1.1.50.nupkg.sha512" + }, + "SourceKit.Analyzers.Collections/1.0.50": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YfTg4iXGB4q6OqEacV3zXnRLHsAjP0wqh1wQ1rTEJgZDdClnoeY2Za3xI6XEdWTclws4+vf5uIi7dnC/ZImHqw==", + "path": "sourcekit.analyzers.collections/1.0.50", + "hashPath": "sourcekit.analyzers.collections.1.0.50.nupkg.sha512" + }, + "SourceKit.Analyzers.Enumerable/1.0.50": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XKlKz51FfLYkmg7om3fI8Owt/EeXqzuuaJ8AjFdbo4Qkfr5UfjGTELkYOMPsZfGgZskMiVE88PXJHzcYd5ilHw==", + "path": "sourcekit.analyzers.enumerable/1.0.50", + "hashPath": "sourcekit.analyzers.enumerable.1.0.50.nupkg.sha512" + }, + "SourceKit.Analyzers.MemberAccessibility/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ri9M3YxJcTO8O64rjm1dXUAxM4otnaNFSSsXaPqrE7+coA02mq2qUY1hRFk0B95/CSkUQUvJR2sr+x2Vz0cDMw==", + "path": "sourcekit.analyzers.memberaccessibility/1.0.31", + "hashPath": "sourcekit.analyzers.memberaccessibility.1.0.31.nupkg.sha512" + }, + "SourceKit.Analyzers.Nullable/1.0.50": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HgOw15lWBhu3NwwXsX48U8TZqCUgyVLwzESUKk8+seb7taDEdq7v1Hc7VOP9oWEvCbj/6DmCfyI4qyS0v8MrHg==", + "path": "sourcekit.analyzers.nullable/1.0.50", + "hashPath": "sourcekit.analyzers.nullable.1.0.50.nupkg.sha512" + }, + "SourceKit.Analyzers.Properties/1.0.50": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yScfY0yhCnkdLb0weAG3N/XXsUGBta8bphvv+rWwInx/DiPMi8wGBHstqRJygmrhzeAp7b91+Gx+aIQ8Cr3pUg==", + "path": "sourcekit.analyzers.properties/1.0.50", + "hashPath": "sourcekit.analyzers.properties.1.0.50.nupkg.sha512" + }, + "StyleCop.Analyzers/1.2.0-beta.507": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/FtugDT66cKJJ+GGH7rNpG6UDrT4iIWz45M6lrXXHobDUFDHw+q5VgkbiR+6ffTO564ge7w6fQh/eoQhVdJO8Q==", + "path": "stylecop.analyzers/1.2.0-beta.507", + "hashPath": "stylecop.analyzers.1.2.0-beta.507.nupkg.sha512" + }, + "StyleCop.Analyzers.Unstable/1.2.0.507": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTY3IQdRqDJ4hbhSA3e/R48oE8b/OiKfvwkt1QdNVfrJK2gMHBV8ldaHJ885jxWZfllK66soa/sdcjh9bX49Tw==", + "path": "stylecop.analyzers.unstable/1.2.0.507", + "hashPath": "stylecop.analyzers.unstable.1.2.0.507.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/src/Lab1/bin/Debug/net9.0/Lab1.dll b/src/Lab1/bin/Debug/net9.0/Lab1.dll new file mode 100644 index 0000000..5464ec6 Binary files /dev/null and b/src/Lab1/bin/Debug/net9.0/Lab1.dll differ diff --git a/src/Lab1/bin/Debug/net9.0/Lab1.pdb b/src/Lab1/bin/Debug/net9.0/Lab1.pdb new file mode 100644 index 0000000..cc0a119 Binary files /dev/null and b/src/Lab1/bin/Debug/net9.0/Lab1.pdb differ diff --git a/src/Lab1/bin/Debug/net9.0/Lab1.xml b/src/Lab1/bin/Debug/net9.0/Lab1.xml new file mode 100644 index 0000000..b41b767 --- /dev/null +++ b/src/Lab1/bin/Debug/net9.0/Lab1.xml @@ -0,0 +1,8 @@ + + + + Lab1 + + + + diff --git a/src/Lab1/obj/Debug/net9.0/Lab1.AssemblyInfo.cs b/src/Lab1/obj/Debug/net9.0/Lab1.AssemblyInfo.cs new file mode 100644 index 0000000..4f40f90 --- /dev/null +++ b/src/Lab1/obj/Debug/net9.0/Lab1.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Lab1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Lab1")] +[assembly: System.Reflection.AssemblyTitleAttribute("Lab1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("Lab1.Tests")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/src/Lab1/obj/Debug/net9.0/Lab1.AssemblyInfoInputs.cache b/src/Lab1/obj/Debug/net9.0/Lab1.AssemblyInfoInputs.cache new file mode 100644 index 0000000..b1dc2f4 --- /dev/null +++ b/src/Lab1/obj/Debug/net9.0/Lab1.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7bf9f925717b3a8b7bbc30145b1ea64205fa4c5acdff042db7936d72ced8c987 diff --git a/src/Lab1/obj/Debug/net9.0/Lab1.GeneratedMSBuildEditorConfig.editorconfig b/src/Lab1/obj/Debug/net9.0/Lab1.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0724a3f --- /dev/null +++ b/src/Lab1/obj/Debug/net9.0/Lab1.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,15 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Itmo.ObjectOrientedProgramming.Lab1 +build_property.ProjectDir = /Users/timon/Downloads/BrazenFatJR-master/src/Lab1/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/src/Lab1/obj/Debug/net9.0/Lab1.GlobalUsings.g.cs b/src/Lab1/obj/Debug/net9.0/Lab1.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/src/Lab1/obj/Debug/net9.0/Lab1.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/src/Lab1/obj/Debug/net9.0/Lab1.assets.cache b/src/Lab1/obj/Debug/net9.0/Lab1.assets.cache new file mode 100644 index 0000000..7e7595a Binary files /dev/null and b/src/Lab1/obj/Debug/net9.0/Lab1.assets.cache differ diff --git a/src/Lab1/obj/Debug/net9.0/Lab1.csproj.AssemblyReference.cache b/src/Lab1/obj/Debug/net9.0/Lab1.csproj.AssemblyReference.cache new file mode 100644 index 0000000..902ba29 Binary files /dev/null and b/src/Lab1/obj/Debug/net9.0/Lab1.csproj.AssemblyReference.cache differ diff --git a/src/Lab1/obj/Debug/net9.0/Lab1.csproj.CoreCompileInputs.cache b/src/Lab1/obj/Debug/net9.0/Lab1.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..fad22fd --- /dev/null +++ b/src/Lab1/obj/Debug/net9.0/Lab1.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +4d7ba731d330270f8875285ffaaa1afc2ac7800670f8a16d8b35524b84db84b6 diff --git a/src/Lab1/obj/Debug/net9.0/Lab1.csproj.FileListAbsolute.txt b/src/Lab1/obj/Debug/net9.0/Lab1.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..78845c1 --- /dev/null +++ b/src/Lab1/obj/Debug/net9.0/Lab1.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/obj/Debug/net9.0/Lab1.csproj.AssemblyReference.cache +/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/obj/Debug/net9.0/Lab1.GeneratedMSBuildEditorConfig.editorconfig +/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/obj/Debug/net9.0/Lab1.AssemblyInfoInputs.cache +/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/obj/Debug/net9.0/Lab1.AssemblyInfo.cs +/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/obj/Debug/net9.0/Lab1.csproj.CoreCompileInputs.cache +/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/obj/Debug/net9.0/Lab1.xml +/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/bin/Debug/net9.0/Lab1.deps.json +/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/bin/Debug/net9.0/Lab1.dll +/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/bin/Debug/net9.0/Lab1.pdb +/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/bin/Debug/net9.0/Lab1.xml +/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/obj/Debug/net9.0/Lab1.dll +/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/obj/Debug/net9.0/refint/Lab1.dll +/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/obj/Debug/net9.0/Lab1.pdb +/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/obj/Debug/net9.0/ref/Lab1.dll diff --git a/src/Lab1/obj/Debug/net9.0/Lab1.dll b/src/Lab1/obj/Debug/net9.0/Lab1.dll new file mode 100644 index 0000000..5464ec6 Binary files /dev/null and b/src/Lab1/obj/Debug/net9.0/Lab1.dll differ diff --git a/src/Lab1/obj/Debug/net9.0/Lab1.pdb b/src/Lab1/obj/Debug/net9.0/Lab1.pdb new file mode 100644 index 0000000..cc0a119 Binary files /dev/null and b/src/Lab1/obj/Debug/net9.0/Lab1.pdb differ diff --git a/src/Lab1/obj/Debug/net9.0/Lab1.xml b/src/Lab1/obj/Debug/net9.0/Lab1.xml new file mode 100644 index 0000000..b41b767 --- /dev/null +++ b/src/Lab1/obj/Debug/net9.0/Lab1.xml @@ -0,0 +1,8 @@ + + + + Lab1 + + + + diff --git a/src/Lab1/obj/Debug/net9.0/ref/Lab1.dll b/src/Lab1/obj/Debug/net9.0/ref/Lab1.dll new file mode 100644 index 0000000..9c61e84 Binary files /dev/null and b/src/Lab1/obj/Debug/net9.0/ref/Lab1.dll differ diff --git a/src/Lab1/obj/Debug/net9.0/refint/Lab1.dll b/src/Lab1/obj/Debug/net9.0/refint/Lab1.dll new file mode 100644 index 0000000..9c61e84 Binary files /dev/null and b/src/Lab1/obj/Debug/net9.0/refint/Lab1.dll differ diff --git a/src/Lab1/obj/Lab1.csproj.nuget.dgspec.json b/src/Lab1/obj/Lab1.csproj.nuget.dgspec.json new file mode 100644 index 0000000..c8114c9 --- /dev/null +++ b/src/Lab1/obj/Lab1.csproj.nuget.dgspec.json @@ -0,0 +1,122 @@ +{ + "format": 1, + "restore": { + "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/Lab1.csproj": {} + }, + "projects": { + "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/Lab1.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/Lab1.csproj", + "projectName": "Lab1", + "projectPath": "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/Lab1.csproj", + "packagesPath": "/Users/timon/.nuget/packages/", + "outputPath": "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/obj/", + "projectStyle": "PackageReference", + "centralPackageVersionsManagementEnabled": true, + "configFilePaths": [ + "/Users/timon/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/opt/homebrew/Cellar/dotnet/9.0.8/libexec/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "allWarningsAsErrors": true, + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Itmo.Dev.Editorconfig": { + "target": "Package", + "version": "[1.0.12, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Collections": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Enumerable": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.MemberAccessibility": { + "target": "Package", + "version": "[1.0.31, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Nullable": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Properties": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "StyleCop.Analyzers": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[1.2.0-beta.507, )", + "versionCentrallyManaged": true + } + }, + "centralPackageVersions": { + "coverlet.collector": "6.0.4", + "Itmo.Dev.Editorconfig": "1.0.12", + "Microsoft.NET.Test.Sdk": "17.14.1", + "SourceKit.Analyzers.Collections": "1.0.50", + "SourceKit.Analyzers.Enumerable": "1.0.50", + "SourceKit.Analyzers.MemberAccessibility": "1.0.31", + "SourceKit.Analyzers.Nullable": "1.0.50", + "SourceKit.Analyzers.Properties": "1.0.50", + "StyleCop.Analyzers": "1.2.0-beta.507", + "xunit": "2.9.3", + "xunit.runner.visualstudio": "3.1.4" + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/opt/homebrew/Cellar/dotnet/9.0.8/libexec/sdk/9.0.109/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/src/Lab1/obj/Lab1.csproj.nuget.g.props b/src/Lab1/obj/Lab1.csproj.nuget.g.props new file mode 100644 index 0000000..aa61af7 --- /dev/null +++ b/src/Lab1/obj/Lab1.csproj.nuget.g.props @@ -0,0 +1,21 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/timon/.nuget/packages/ + /Users/timon/.nuget/packages/ + PackageReference + 6.12.4 + + + + + + + + + /Users/timon/.nuget/packages/stylecop.analyzers.unstable/1.2.0.507 + + \ No newline at end of file diff --git a/src/Lab1/obj/Lab1.csproj.nuget.g.targets b/src/Lab1/obj/Lab1.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/src/Lab1/obj/Lab1.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/Lab1/obj/project.assets.json b/src/Lab1/obj/project.assets.json new file mode 100644 index 0000000..39bcc44 --- /dev/null +++ b/src/Lab1/obj/project.assets.json @@ -0,0 +1,328 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "Itmo.Dev.Editorconfig/1.0.12": { + "type": "package", + "compile": { + "lib/netstandard2.0/Itmo.Dev.Editorconfig.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Itmo.Dev.Editorconfig.dll": {} + }, + "build": { + "build/Itmo.Dev.Editorconfig.props": {} + } + }, + "SourceKit/1.1.50": { + "type": "package" + }, + "SourceKit.Analyzers.Collections/1.0.50": { + "type": "package", + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "SourceKit.Analyzers.Enumerable/1.0.50": { + "type": "package", + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "SourceKit.Analyzers.MemberAccessibility/1.0.31": { + "type": "package", + "dependencies": { + "SourceKit": "1.1.31" + } + }, + "SourceKit.Analyzers.Nullable/1.0.50": { + "type": "package", + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "SourceKit.Analyzers.Properties/1.0.50": { + "type": "package", + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "StyleCop.Analyzers/1.2.0-beta.507": { + "type": "package", + "dependencies": { + "StyleCop.Analyzers.Unstable": "1.2.0.507" + } + }, + "StyleCop.Analyzers.Unstable/1.2.0.507": { + "type": "package" + } + } + }, + "libraries": { + "Itmo.Dev.Editorconfig/1.0.12": { + "sha512": "+JwouEfM+SsBCCmP2h2escdpPF1Mx+kTms+lI2kjUaZyBOzR1Xt/LEhrwTQ2pd7cQ9Qpr/ul2MZehGIgUmgRxQ==", + "type": "package", + "path": "itmo.dev.editorconfig/1.0.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Itmo.Dev.Editorconfig.props", + "content/Rules/.editorconfig", + "itmo.dev.editorconfig.1.0.12.nupkg.sha512", + "itmo.dev.editorconfig.nuspec", + "lib/netstandard2.0/Itmo.Dev.Editorconfig.dll" + ] + }, + "SourceKit/1.1.50": { + "sha512": "dxG3n6AN1gO3w0cX8ebfH21K+Ga2W9ro+RN1vzJ6NAF8YSzq2HeEnYGVkVHnR8t9M2jklQnHBetbOnB6vaViQA==", + "type": "package", + "path": "sourcekit/1.1.50", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "analyzers/dotnet/cs/SourceKit.dll", + "sourcekit.1.1.50.nupkg.sha512", + "sourcekit.nuspec" + ] + }, + "SourceKit.Analyzers.Collections/1.0.50": { + "sha512": "YfTg4iXGB4q6OqEacV3zXnRLHsAjP0wqh1wQ1rTEJgZDdClnoeY2Za3xI6XEdWTclws4+vf5uIi7dnC/ZImHqw==", + "type": "package", + "path": "sourcekit.analyzers.collections/1.0.50", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "analyzers/dotnet/cs/SourceKit.Analyzers.Collections.dll", + "sourcekit.analyzers.collections.1.0.50.nupkg.sha512", + "sourcekit.analyzers.collections.nuspec" + ] + }, + "SourceKit.Analyzers.Enumerable/1.0.50": { + "sha512": "XKlKz51FfLYkmg7om3fI8Owt/EeXqzuuaJ8AjFdbo4Qkfr5UfjGTELkYOMPsZfGgZskMiVE88PXJHzcYd5ilHw==", + "type": "package", + "path": "sourcekit.analyzers.enumerable/1.0.50", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "analyzers/dotnet/cs/SourceKit.Analyzers.Enumerable.dll", + "sourcekit.analyzers.enumerable.1.0.50.nupkg.sha512", + "sourcekit.analyzers.enumerable.nuspec" + ] + }, + "SourceKit.Analyzers.MemberAccessibility/1.0.31": { + "sha512": "Ri9M3YxJcTO8O64rjm1dXUAxM4otnaNFSSsXaPqrE7+coA02mq2qUY1hRFk0B95/CSkUQUvJR2sr+x2Vz0cDMw==", + "type": "package", + "path": "sourcekit.analyzers.memberaccessibility/1.0.31", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "analyzers/dotnet/cs/SourceKit.Analyzers.MemberAccessibility.dll", + "sourcekit.analyzers.memberaccessibility.1.0.31.nupkg.sha512", + "sourcekit.analyzers.memberaccessibility.nuspec" + ] + }, + "SourceKit.Analyzers.Nullable/1.0.50": { + "sha512": "HgOw15lWBhu3NwwXsX48U8TZqCUgyVLwzESUKk8+seb7taDEdq7v1Hc7VOP9oWEvCbj/6DmCfyI4qyS0v8MrHg==", + "type": "package", + "path": "sourcekit.analyzers.nullable/1.0.50", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "analyzers/dotnet/cs/SourceKit.Analyzers.Nullable.dll", + "sourcekit.analyzers.nullable.1.0.50.nupkg.sha512", + "sourcekit.analyzers.nullable.nuspec" + ] + }, + "SourceKit.Analyzers.Properties/1.0.50": { + "sha512": "yScfY0yhCnkdLb0weAG3N/XXsUGBta8bphvv+rWwInx/DiPMi8wGBHstqRJygmrhzeAp7b91+Gx+aIQ8Cr3pUg==", + "type": "package", + "path": "sourcekit.analyzers.properties/1.0.50", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "analyzers/dotnet/cs/SourceKit.Analyzers.Properties.dll", + "sourcekit.analyzers.properties.1.0.50.nupkg.sha512", + "sourcekit.analyzers.properties.nuspec" + ] + }, + "StyleCop.Analyzers/1.2.0-beta.507": { + "sha512": "/FtugDT66cKJJ+GGH7rNpG6UDrT4iIWz45M6lrXXHobDUFDHw+q5VgkbiR+6ffTO564ge7w6fQh/eoQhVdJO8Q==", + "type": "package", + "path": "stylecop.analyzers/1.2.0-beta.507", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "THIRD-PARTY-NOTICES.txt", + "stylecop.analyzers.1.2.0-beta.507.nupkg.sha512", + "stylecop.analyzers.nuspec" + ] + }, + "StyleCop.Analyzers.Unstable/1.2.0.507": { + "sha512": "gTY3IQdRqDJ4hbhSA3e/R48oE8b/OiKfvwkt1QdNVfrJK2gMHBV8ldaHJ885jxWZfllK66soa/sdcjh9bX49Tw==", + "type": "package", + "path": "stylecop.analyzers.unstable/1.2.0.507", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "THIRD-PARTY-NOTICES.txt", + "analyzers/dotnet/cs/StyleCop.Analyzers.CodeFixes.dll", + "analyzers/dotnet/cs/StyleCop.Analyzers.dll", + "analyzers/dotnet/cs/de-DE/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/en-GB/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/es-MX/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr-FR/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl-PL/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru-RU/StyleCop.Analyzers.resources.dll", + "rulesets/StyleCopAnalyzersDefault.ruleset", + "stylecop.analyzers.unstable.1.2.0.507.nupkg.sha512", + "stylecop.analyzers.unstable.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "Itmo.Dev.Editorconfig >= 1.0.12", + "SourceKit.Analyzers.Collections >= 1.0.50", + "SourceKit.Analyzers.Enumerable >= 1.0.50", + "SourceKit.Analyzers.MemberAccessibility >= 1.0.31", + "SourceKit.Analyzers.Nullable >= 1.0.50", + "SourceKit.Analyzers.Properties >= 1.0.50", + "StyleCop.Analyzers >= 1.2.0-beta.507" + ] + }, + "packageFolders": { + "/Users/timon/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/Lab1.csproj", + "projectName": "Lab1", + "projectPath": "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/Lab1.csproj", + "packagesPath": "/Users/timon/.nuget/packages/", + "outputPath": "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/obj/", + "projectStyle": "PackageReference", + "centralPackageVersionsManagementEnabled": true, + "configFilePaths": [ + "/Users/timon/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/opt/homebrew/Cellar/dotnet/9.0.8/libexec/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "allWarningsAsErrors": true, + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Itmo.Dev.Editorconfig": { + "target": "Package", + "version": "[1.0.12, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Collections": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Enumerable": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.MemberAccessibility": { + "target": "Package", + "version": "[1.0.31, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Nullable": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Properties": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "StyleCop.Analyzers": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[1.2.0-beta.507, )", + "versionCentrallyManaged": true + } + }, + "centralPackageVersions": { + "coverlet.collector": "6.0.4", + "Itmo.Dev.Editorconfig": "1.0.12", + "Microsoft.NET.Test.Sdk": "17.14.1", + "SourceKit.Analyzers.Collections": "1.0.50", + "SourceKit.Analyzers.Enumerable": "1.0.50", + "SourceKit.Analyzers.MemberAccessibility": "1.0.31", + "SourceKit.Analyzers.Nullable": "1.0.50", + "SourceKit.Analyzers.Properties": "1.0.50", + "StyleCop.Analyzers": "1.2.0-beta.507", + "xunit": "2.9.3", + "xunit.runner.visualstudio": "3.1.4" + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/opt/homebrew/Cellar/dotnet/9.0.8/libexec/sdk/9.0.109/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/src/Lab1/obj/project.nuget.cache b/src/Lab1/obj/project.nuget.cache new file mode 100644 index 0000000..f10a61f --- /dev/null +++ b/src/Lab1/obj/project.nuget.cache @@ -0,0 +1,18 @@ +{ + "version": 2, + "dgSpecHash": "W6ZjyXe9oeI=", + "success": true, + "projectFilePath": "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/Lab1.csproj", + "expectedPackageFiles": [ + "/Users/timon/.nuget/packages/itmo.dev.editorconfig/1.0.12/itmo.dev.editorconfig.1.0.12.nupkg.sha512", + "/Users/timon/.nuget/packages/sourcekit/1.1.50/sourcekit.1.1.50.nupkg.sha512", + "/Users/timon/.nuget/packages/sourcekit.analyzers.collections/1.0.50/sourcekit.analyzers.collections.1.0.50.nupkg.sha512", + "/Users/timon/.nuget/packages/sourcekit.analyzers.enumerable/1.0.50/sourcekit.analyzers.enumerable.1.0.50.nupkg.sha512", + "/Users/timon/.nuget/packages/sourcekit.analyzers.memberaccessibility/1.0.31/sourcekit.analyzers.memberaccessibility.1.0.31.nupkg.sha512", + "/Users/timon/.nuget/packages/sourcekit.analyzers.nullable/1.0.50/sourcekit.analyzers.nullable.1.0.50.nupkg.sha512", + "/Users/timon/.nuget/packages/sourcekit.analyzers.properties/1.0.50/sourcekit.analyzers.properties.1.0.50.nupkg.sha512", + "/Users/timon/.nuget/packages/stylecop.analyzers/1.2.0-beta.507/stylecop.analyzers.1.2.0-beta.507.nupkg.sha512", + "/Users/timon/.nuget/packages/stylecop.analyzers.unstable/1.2.0.507/stylecop.analyzers.unstable.1.2.0.507.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/tests/Lab1.Tests/RouteTests.cs b/tests/Lab1.Tests/RouteTests.cs new file mode 100644 index 0000000..f468475 --- /dev/null +++ b/tests/Lab1.Tests/RouteTests.cs @@ -0,0 +1,208 @@ +using Itmo.ObjectOrientedProgramming.Lab1.Models; +using Itmo.ObjectOrientedProgramming.Lab1.RouteSegments; +using Xunit; + +namespace Itmo.ObjectOrientedProgramming.Lab1.Tests; + +public class RouteTests +{ + private const double TrainMass = 1000.0; + private const double TrainMaxForce = 10000.0; + private const double TrainPrecision = 0.01; + + [Fact] + public void EnergyPathAcceleratingShouldSucceed() + { + const double routeSpeedLimit = 100.0; + const double pathDistance = 1000.0; + const double acceleratingForce = 5000.0; + + var trainSpecs = new TrainSpecifications(TrainMass, TrainMaxForce, TrainPrecision); + var train = new Train(trainSpecs); + var route = new Itmo.ObjectOrientedProgramming.Lab1.Route( + new IRouteSegment[] + { + new EnergyPath(pathDistance, acceleratingForce), + new RegularPath(pathDistance), + }, + routeSpeedLimit); + + Success result = route.Traverse(train); + + Assert.True(result.IsSuccess); + } + + [Fact] + public void EnergyPathExceedingSpeedLimitShouldFail() + { + const double routeSpeedLimit = 50.0; + const double pathDistance = 1000.0; + const double acceleratingForce = 5000.0; + + var trainSpecs = new TrainSpecifications(TrainMass, TrainMaxForce, TrainPrecision); + var train = new Train(trainSpecs); + var route = new Itmo.ObjectOrientedProgramming.Lab1.Route( + new IRouteSegment[] + { + new EnergyPath(pathDistance, acceleratingForce), + new RegularPath(pathDistance), + }, + routeSpeedLimit); + + Result result = route.Traverse(train); + + Assert.True(result.IsFailure); + } + + [Fact] + public void EnergyPathWithStationShouldSucceed() + { + const double routeSpeedLimit = 100.0; + const double stationSpeedLimit = 80.0; + const double pathDistance = 500.0; + const double acceleratingForce = 4000.0; + const double passengerLoadTime = 10.0; + + var trainSpecs = new TrainSpecifications(TrainMass, TrainMaxForce, TrainPrecision); + var train = new Train(trainSpecs); + var route = new Itmo.ObjectOrientedProgramming.Lab1.Route( + new IRouteSegment[] + { + new EnergyPath(pathDistance, acceleratingForce), + new RegularPath(pathDistance), + new Station(stationSpeedLimit, passengerLoadTime), + new RegularPath(pathDistance), + }, + routeSpeedLimit); + + Success result = route.Traverse(train); + + Assert.True(result.IsSuccess); + } + + [Fact] + public void EnergyPathExceedingStationLimitShouldFail() + { + const double routeSpeedLimit = 100.0; + const double stationSpeedLimit = 30.0; + const double pathDistance = 1000.0; + const double acceleratingForce = 5000.0; + const double passengerLoadTime = 10.0; + + var trainSpecs = new TrainSpecifications(TrainMass, TrainMaxForce, TrainPrecision); + var train = new Train(trainSpecs); + var route = new Itmo.ObjectOrientedProgramming.Lab1.Route( + new IRouteSegment[] + { + new EnergyPath(pathDistance, acceleratingForce), + new Station(stationSpeedLimit, passengerLoadTime), + new RegularPath(pathDistance), + }, + routeSpeedLimit); + + Result result = route.Traverse(train); + + Assert.True(result.IsFailure); + } + + [Fact] + public void SpeedExceedsRouteLimitShouldFail() + { + const double routeSpeedLimit = 60.0; + const double stationSpeedLimit = 80.0; + const double pathDistance = 800.0; + const double acceleratingForce = 4500.0; + const double passengerLoadTime = 10.0; + + var trainSpecs = new TrainSpecifications(TrainMass, TrainMaxForce, TrainPrecision); + var train = new Train(trainSpecs); + var route = new Itmo.ObjectOrientedProgramming.Lab1.Route( + new IRouteSegment[] + { + new EnergyPath(pathDistance, acceleratingForce), + new RegularPath(pathDistance), + new Station(stationSpeedLimit, passengerLoadTime), + new RegularPath(pathDistance), + }, + routeSpeedLimit); + + Result result = route.Traverse(train); + + Assert.True(result.IsFailure); + } + + [Fact] + public void ComplexRouteShouldSucceed() + { + const double routeSpeedLimit = 80.0; + const double stationSpeedLimit = 60.0; + const double pathDistance = 500.0; + const double acceleratingForce = 5000.0; + const double deceleratingForce = -2000.0; + const double passengerLoadTime = 10.0; + + var trainSpecs = new TrainSpecifications(TrainMass, TrainMaxForce, TrainPrecision); + var train = new Train(trainSpecs); + var route = new Itmo.ObjectOrientedProgramming.Lab1.Route( + new IRouteSegment[] + { + new EnergyPath(pathDistance, acceleratingForce), + new RegularPath(pathDistance), + new EnergyPath(pathDistance, deceleratingForce), + new Station(stationSpeedLimit, passengerLoadTime), + new RegularPath(pathDistance), + new EnergyPath(pathDistance, acceleratingForce), + new RegularPath(pathDistance), + new EnergyPath(pathDistance, deceleratingForce), + }, + routeSpeedLimit); + + Success result = route.Traverse(train); + + Assert.True(result.IsSuccess); + } + + [Fact] + public void RegularPathWithoutAccelerationShouldFail() + { + const double routeSpeedLimit = 100.0; + const double pathDistance = 1000.0; + + var trainSpecs = new TrainSpecifications(TrainMass, TrainMaxForce, TrainPrecision); + var train = new Train(trainSpecs); + var route = new Itmo.ObjectOrientedProgramming.Lab1.Route( + new IRouteSegment[] + { + new RegularPath(pathDistance), + }, + routeSpeedLimit); + + Result result = route.Traverse(train); + + Assert.True(result.IsFailure); + } + + [Fact] + public void NegativeSpeedShouldFail() + { + const double routeSpeedLimit = 100.0; + const double pathDistance = 500.0; + const double acceleratingForce = 3000.0; + const double strongDeceleratingForce = -6000.0; + + var trainSpecs = new TrainSpecifications(TrainMass, TrainMaxForce, TrainPrecision); + var train = new Train(trainSpecs); + var route = new Itmo.ObjectOrientedProgramming.Lab1.Route( + new IRouteSegment[] + { + new EnergyPath(pathDistance, acceleratingForce), + new EnergyPath(pathDistance, strongDeceleratingForce), + }, + routeSpeedLimit); + + Result result = route.Traverse(train); + + Assert.True(result.IsFailure); + } +} + diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/Itmo.Dev.Editorconfig.dll b/tests/Lab1.Tests/bin/Debug/net9.0/Itmo.Dev.Editorconfig.dll new file mode 100644 index 0000000..14b17b4 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/Itmo.Dev.Editorconfig.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.deps.json b/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.deps.json new file mode 100644 index 0000000..f1b94db --- /dev/null +++ b/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.deps.json @@ -0,0 +1,601 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Lab1.Tests/1.0.0": { + "dependencies": { + "Itmo.Dev.Editorconfig": "1.0.12", + "Lab1": "1.0.0", + "Microsoft.NET.Test.Sdk": "17.14.1", + "SourceKit.Analyzers.Collections": "1.0.50", + "SourceKit.Analyzers.Enumerable": "1.0.50", + "SourceKit.Analyzers.MemberAccessibility": "1.0.31", + "SourceKit.Analyzers.Nullable": "1.0.50", + "SourceKit.Analyzers.Properties": "1.0.50", + "StyleCop.Analyzers": "1.2.0-beta.507", + "coverlet.collector": "6.0.4", + "xunit": "2.9.3", + "xunit.runner.visualstudio": "3.1.4" + }, + "runtime": { + "Lab1.Tests.dll": {} + } + }, + "coverlet.collector/6.0.4": {}, + "Itmo.Dev.Editorconfig/1.0.12": { + "runtime": { + "lib/netstandard2.0/Itmo.Dev.Editorconfig.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "Microsoft.CodeCoverage/17.14.1": { + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.225.12603" + } + } + }, + "Microsoft.NET.Test.Sdk/17.14.1": { + "dependencies": { + "Microsoft.CodeCoverage": "17.14.1", + "Microsoft.TestPlatform.TestHost": "17.14.1" + } + }, + "Microsoft.TestPlatform.ObjectModel/17.14.1": { + "dependencies": { + "System.Reflection.Metadata": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + } + }, + "resources": { + "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/17.14.1": { + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.14.1", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + }, + "lib/net8.0/testhost.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1400.125.30202" + } + }, + "resources": { + "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "SourceKit/1.1.50": {}, + "SourceKit.Analyzers.Collections/1.0.50": { + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "SourceKit.Analyzers.Enumerable/1.0.50": { + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "SourceKit.Analyzers.MemberAccessibility/1.0.31": { + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "SourceKit.Analyzers.Nullable/1.0.50": { + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "SourceKit.Analyzers.Properties/1.0.50": { + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "StyleCop.Analyzers/1.2.0-beta.507": { + "dependencies": { + "StyleCop.Analyzers.Unstable": "1.2.0.507" + } + }, + "StyleCop.Analyzers.Unstable/1.2.0.507": {}, + "System.Collections.Immutable/8.0.0": {}, + "System.Reflection.Metadata/8.0.0": { + "dependencies": { + "System.Collections.Immutable": "8.0.0" + } + }, + "xunit/2.9.3": { + "dependencies": { + "xunit.analyzers": "1.18.0", + "xunit.assert": "2.9.3", + "xunit.core": "2.9.3" + } + }, + "xunit.abstractions/2.0.3": { + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "0.0.0.0" + } + } + }, + "xunit.analyzers/1.18.0": {}, + "xunit.assert/2.9.3": { + "runtime": { + "lib/net6.0/xunit.assert.dll": { + "assemblyVersion": "2.9.3.0", + "fileVersion": "2.9.3.0" + } + } + }, + "xunit.core/2.9.3": { + "dependencies": { + "xunit.extensibility.core": "2.9.3", + "xunit.extensibility.execution": "2.9.3" + } + }, + "xunit.extensibility.core/2.9.3": { + "dependencies": { + "xunit.abstractions": "2.0.3" + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": { + "assemblyVersion": "2.9.3.0", + "fileVersion": "2.9.3.0" + } + } + }, + "xunit.extensibility.execution/2.9.3": { + "dependencies": { + "xunit.extensibility.core": "2.9.3" + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": { + "assemblyVersion": "2.9.3.0", + "fileVersion": "2.9.3.0" + } + } + }, + "xunit.runner.visualstudio/3.1.4": {}, + "Lab1/1.0.0": { + "dependencies": { + "Itmo.Dev.Editorconfig": "1.0.12", + "SourceKit.Analyzers.Collections": "1.0.50", + "SourceKit.Analyzers.Enumerable": "1.0.50", + "SourceKit.Analyzers.MemberAccessibility": "1.0.31", + "SourceKit.Analyzers.Nullable": "1.0.50", + "SourceKit.Analyzers.Properties": "1.0.50" + }, + "runtime": { + "Lab1.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Lab1.Tests/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "coverlet.collector/6.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==", + "path": "coverlet.collector/6.0.4", + "hashPath": "coverlet.collector.6.0.4.nupkg.sha512" + }, + "Itmo.Dev.Editorconfig/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+JwouEfM+SsBCCmP2h2escdpPF1Mx+kTms+lI2kjUaZyBOzR1Xt/LEhrwTQ2pd7cQ9Qpr/ul2MZehGIgUmgRxQ==", + "path": "itmo.dev.editorconfig/1.0.12", + "hashPath": "itmo.dev.editorconfig.1.0.12.nupkg.sha512" + }, + "Microsoft.CodeCoverage/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pmTrhfFIoplzFVbhVwUquT+77CbGH+h4/3mBpdmIlYtBi9nAB+kKI6dN3A/nV4DFi3wLLx/BlHIPK+MkbQ6Tpg==", + "path": "microsoft.codecoverage/17.14.1", + "hashPath": "microsoft.codecoverage.17.14.1.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HJKqKOE+vshXra2aEHpi2TlxYX7Z9VFYkr+E5rwEvHC8eIXiyO+K9kNm8vmNom3e2rA56WqxU+/N9NJlLGXsJQ==", + "path": "microsoft.net.test.sdk/17.14.1", + "hashPath": "microsoft.net.test.sdk.17.14.1.nupkg.sha512" + }, + "Microsoft.TestPlatform.ObjectModel/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xTP1W6Mi6SWmuxd3a+jj9G9UoC850WGwZUps1Wah9r1ZxgXhdJfj1QqDLJkFjHDCvN42qDL2Ps5KjQYWUU0zcQ==", + "path": "microsoft.testplatform.objectmodel/17.14.1", + "hashPath": "microsoft.testplatform.objectmodel.17.14.1.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/17.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d78LPzGKkJwsJXAQwsbJJ7LE7D1wB+rAyhHHAaODF+RDSQ0NgMjDFkSA1Djw18VrxO76GlKAjRUhl+H8NL8Z+Q==", + "path": "microsoft.testplatform.testhost/17.14.1", + "hashPath": "microsoft.testplatform.testhost.17.14.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "SourceKit/1.1.50": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dxG3n6AN1gO3w0cX8ebfH21K+Ga2W9ro+RN1vzJ6NAF8YSzq2HeEnYGVkVHnR8t9M2jklQnHBetbOnB6vaViQA==", + "path": "sourcekit/1.1.50", + "hashPath": "sourcekit.1.1.50.nupkg.sha512" + }, + "SourceKit.Analyzers.Collections/1.0.50": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YfTg4iXGB4q6OqEacV3zXnRLHsAjP0wqh1wQ1rTEJgZDdClnoeY2Za3xI6XEdWTclws4+vf5uIi7dnC/ZImHqw==", + "path": "sourcekit.analyzers.collections/1.0.50", + "hashPath": "sourcekit.analyzers.collections.1.0.50.nupkg.sha512" + }, + "SourceKit.Analyzers.Enumerable/1.0.50": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XKlKz51FfLYkmg7om3fI8Owt/EeXqzuuaJ8AjFdbo4Qkfr5UfjGTELkYOMPsZfGgZskMiVE88PXJHzcYd5ilHw==", + "path": "sourcekit.analyzers.enumerable/1.0.50", + "hashPath": "sourcekit.analyzers.enumerable.1.0.50.nupkg.sha512" + }, + "SourceKit.Analyzers.MemberAccessibility/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ri9M3YxJcTO8O64rjm1dXUAxM4otnaNFSSsXaPqrE7+coA02mq2qUY1hRFk0B95/CSkUQUvJR2sr+x2Vz0cDMw==", + "path": "sourcekit.analyzers.memberaccessibility/1.0.31", + "hashPath": "sourcekit.analyzers.memberaccessibility.1.0.31.nupkg.sha512" + }, + "SourceKit.Analyzers.Nullable/1.0.50": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HgOw15lWBhu3NwwXsX48U8TZqCUgyVLwzESUKk8+seb7taDEdq7v1Hc7VOP9oWEvCbj/6DmCfyI4qyS0v8MrHg==", + "path": "sourcekit.analyzers.nullable/1.0.50", + "hashPath": "sourcekit.analyzers.nullable.1.0.50.nupkg.sha512" + }, + "SourceKit.Analyzers.Properties/1.0.50": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yScfY0yhCnkdLb0weAG3N/XXsUGBta8bphvv+rWwInx/DiPMi8wGBHstqRJygmrhzeAp7b91+Gx+aIQ8Cr3pUg==", + "path": "sourcekit.analyzers.properties/1.0.50", + "hashPath": "sourcekit.analyzers.properties.1.0.50.nupkg.sha512" + }, + "StyleCop.Analyzers/1.2.0-beta.507": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/FtugDT66cKJJ+GGH7rNpG6UDrT4iIWz45M6lrXXHobDUFDHw+q5VgkbiR+6ffTO564ge7w6fQh/eoQhVdJO8Q==", + "path": "stylecop.analyzers/1.2.0-beta.507", + "hashPath": "stylecop.analyzers.1.2.0-beta.507.nupkg.sha512" + }, + "StyleCop.Analyzers.Unstable/1.2.0.507": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTY3IQdRqDJ4hbhSA3e/R48oE8b/OiKfvwkt1QdNVfrJK2gMHBV8ldaHJ885jxWZfllK66soa/sdcjh9bX49Tw==", + "path": "stylecop.analyzers.unstable/1.2.0.507", + "hashPath": "stylecop.analyzers.unstable.1.2.0.507.nupkg.sha512" + }, + "System.Collections.Immutable/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==", + "path": "system.collections.immutable/8.0.0", + "hashPath": "system.collections.immutable.8.0.0.nupkg.sha512" + }, + "System.Reflection.Metadata/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ptvgrFh7PvWI8bcVqG5rsA/weWM09EnthFHR5SCnS6IN+P4mj6rE1lBDC4U8HL9/57htKAqy4KQ3bBj84cfYyQ==", + "path": "system.reflection.metadata/8.0.0", + "hashPath": "system.reflection.metadata.8.0.0.nupkg.sha512" + }, + "xunit/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", + "path": "xunit/2.9.3", + "hashPath": "xunit.2.9.3.nupkg.sha512" + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "path": "xunit.abstractions/2.0.3", + "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" + }, + "xunit.analyzers/1.18.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==", + "path": "xunit.analyzers/1.18.0", + "hashPath": "xunit.analyzers.1.18.0.nupkg.sha512" + }, + "xunit.assert/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==", + "path": "xunit.assert/2.9.3", + "hashPath": "xunit.assert.2.9.3.nupkg.sha512" + }, + "xunit.core/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", + "path": "xunit.core/2.9.3", + "hashPath": "xunit.core.2.9.3.nupkg.sha512" + }, + "xunit.extensibility.core/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", + "path": "xunit.extensibility.core/2.9.3", + "hashPath": "xunit.extensibility.core.2.9.3.nupkg.sha512" + }, + "xunit.extensibility.execution/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", + "path": "xunit.extensibility.execution/2.9.3", + "hashPath": "xunit.extensibility.execution.2.9.3.nupkg.sha512" + }, + "xunit.runner.visualstudio/3.1.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5mj99LvCqrq3CNi06xYdyIAXOEh+5b33F2nErCzI5zWiDdLHXiPXEWFSUAF8zlIv0ZWqjZNCwHTQeAPYbF3pCg==", + "path": "xunit.runner.visualstudio/3.1.4", + "hashPath": "xunit.runner.visualstudio.3.1.4.nupkg.sha512" + }, + "Lab1/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.dll b/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.dll new file mode 100644 index 0000000..f4b1d89 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.pdb b/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.pdb new file mode 100644 index 0000000..df062ba Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.pdb differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.runtimeconfig.json b/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.runtimeconfig.json new file mode 100644 index 0000000..fe596ba --- /dev/null +++ b/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.runtimeconfig.json @@ -0,0 +1,13 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + "configProperties": { + "MSTest.EnableParentProcessQuery": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.pdb b/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.pdb new file mode 100644 index 0000000..cc0a119 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.pdb differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.xml b/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.xml new file mode 100644 index 0000000..b41b767 --- /dev/null +++ b/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.xml @@ -0,0 +1,8 @@ + + + + Lab1 + + + + diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CoreUtilities.dll b/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CoreUtilities.dll new file mode 100644 index 0000000..e06f7bf Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CoreUtilities.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CrossPlatEngine.dll new file mode 100644 index 0000000..9b6de68 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.PlatformAbstractions.dll new file mode 100644 index 0000000..39fb3bd Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100644 index 0000000..e2fbdcb Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.Common.dll new file mode 100644 index 0000000..32a461c Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll new file mode 100644 index 0000000..c9ab03e Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/Newtonsoft.Json.dll b/tests/Lab1.Tests/bin/Debug/net9.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..d035c38 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/Newtonsoft.Json.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..6b4cb52 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..4bd6351 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..7b44217 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..711b34d Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..8e5665d Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..7430499 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..310ab84 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..451e2d2 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..e606f2d Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..c4a0f6d Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..861e885 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..a3867c8 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..08ad46b Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..44c4b7f Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..668630a Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..e7ac83f Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..305ae61 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..a2eeac8 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..7394ada Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..36ad487 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..21fd3a2 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..3138d0b Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..e0afbb4 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..591475d Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..f6d7529 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..008facc Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..7a2bc17 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..f5e04ec Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..4c707a0 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..84e7a2d Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..4198d29 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..6583956 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..354b0bf Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..f46d948 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..42c1de2 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..9e65b3a Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..26b5522 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..bdc41ed Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..302a135 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..b435708 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..c9f988e Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..0849e28 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..8657f14 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..a2a3f0e Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..834e160 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..2b48978 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..59fa16a Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..a4b7361 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..968210b Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..5f94d05 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/testhost.dll b/tests/Lab1.Tests/bin/Debug/net9.0/testhost.dll new file mode 100644 index 0000000..538cc6d Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/testhost.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/xunit.abstractions.dll b/tests/Lab1.Tests/bin/Debug/net9.0/xunit.abstractions.dll new file mode 100644 index 0000000..d1e90bf Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/xunit.abstractions.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/xunit.core.dll b/tests/Lab1.Tests/bin/Debug/net9.0/xunit.core.dll new file mode 100644 index 0000000..d56aa16 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/xunit.core.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/xunit.execution.dotnet.dll b/tests/Lab1.Tests/bin/Debug/net9.0/xunit.execution.dotnet.dll new file mode 100644 index 0000000..7a1cc87 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/xunit.execution.dotnet.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/xunit.runner.visualstudio.testadapter.dll b/tests/Lab1.Tests/bin/Debug/net9.0/xunit.runner.visualstudio.testadapter.dll new file mode 100644 index 0000000..8126550 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/xunit.runner.visualstudio.testadapter.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..34e54ed Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..dc5e3d1 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..bf6c73d Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..cfbf0bc Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..f671e52 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..f30f879 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..c2b89ef Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..a0764e6 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..a6014d3 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..3e7e989 Binary files /dev/null and b/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.AssemblyInfo.cs b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.AssemblyInfo.cs new file mode 100644 index 0000000..8653d12 --- /dev/null +++ b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Lab1.Tests")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Lab1.Tests")] +[assembly: System.Reflection.AssemblyTitleAttribute("Lab1.Tests")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("Lab1.Tests.Tests")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.AssemblyInfoInputs.cache b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.AssemblyInfoInputs.cache new file mode 100644 index 0000000..2d71207 --- /dev/null +++ b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +02c553705c879f9c281a3600cca577aac6f386f28b802dead7f2a2f74247b0ce diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.GeneratedMSBuildEditorConfig.editorconfig b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a5ade1d --- /dev/null +++ b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,15 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Itmo.ObjectOrientedProgramming.Lab1.Tests +build_property.ProjectDir = /Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.GlobalUsings.g.cs b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.assets.cache b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.assets.cache new file mode 100644 index 0000000..8803fab Binary files /dev/null and b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.assets.cache differ diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.csproj.AssemblyReference.cache b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.csproj.AssemblyReference.cache new file mode 100644 index 0000000..30aec37 Binary files /dev/null and b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.csproj.AssemblyReference.cache differ diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.csproj.CoreCompileInputs.cache b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..00a657d --- /dev/null +++ b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +3af3425a1fd7e07ca20d82890197d711b3fd433cfb4468fb0aeb4f7b63bd379f diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.csproj.FileListAbsolute.txt b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..2333487 --- /dev/null +++ b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.csproj.FileListAbsolute.txt @@ -0,0 +1,103 @@ +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/.msCoverageSourceRootsMapping_Lab1.Tests +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/CoverletSourceRootsMapping_Lab1.Tests +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.csproj.AssemblyReference.cache +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.GeneratedMSBuildEditorConfig.editorconfig +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.AssemblyInfoInputs.cache +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.AssemblyInfo.cs +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.csproj.CoreCompileInputs.cache +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.xml +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/xunit.abstractions.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/xunit.runner.visualstudio.testadapter.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.deps.json +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.runtimeconfig.json +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.pdb +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.Tests.xml +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Itmo.Dev.Editorconfig.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CoreUtilities.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.PlatformAbstractions.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CommunicationUtilities.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CrossPlatEngine.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.Utilities.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.Common.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/testhost.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Newtonsoft.Json.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/xunit.assert.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/xunit.core.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/xunit.execution.dotnet.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.pdb +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/bin/Debug/net9.0/Lab1.xml +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.csproj.Up2Date +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/obj/Debug/net9.0/refint/Lab1.Tests.dll +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.pdb +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.genruntimeconfig.cache +/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/obj/Debug/net9.0/ref/Lab1.Tests.dll diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.csproj.Up2Date b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.dll b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.dll new file mode 100644 index 0000000..f4b1d89 Binary files /dev/null and b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.dll differ diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.genruntimeconfig.cache b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.genruntimeconfig.cache new file mode 100644 index 0000000..fb5831e --- /dev/null +++ b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.genruntimeconfig.cache @@ -0,0 +1 @@ +2342688bca0a5479af4a4efa5aef0eb81eb53fe614f1368062f3497249fade5e diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.pdb b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.pdb new file mode 100644 index 0000000..df062ba Binary files /dev/null and b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.pdb differ diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.xml b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.xml new file mode 100644 index 0000000..fae6396 --- /dev/null +++ b/tests/Lab1.Tests/obj/Debug/net9.0/Lab1.Tests.xml @@ -0,0 +1,8 @@ + + + + Lab1.Tests + + + + diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/ref/Lab1.Tests.dll b/tests/Lab1.Tests/obj/Debug/net9.0/ref/Lab1.Tests.dll new file mode 100644 index 0000000..773b905 Binary files /dev/null and b/tests/Lab1.Tests/obj/Debug/net9.0/ref/Lab1.Tests.dll differ diff --git a/tests/Lab1.Tests/obj/Debug/net9.0/refint/Lab1.Tests.dll b/tests/Lab1.Tests/obj/Debug/net9.0/refint/Lab1.Tests.dll new file mode 100644 index 0000000..773b905 Binary files /dev/null and b/tests/Lab1.Tests/obj/Debug/net9.0/refint/Lab1.Tests.dll differ diff --git a/tests/Lab1.Tests/obj/Lab1.Tests.csproj.nuget.dgspec.json b/tests/Lab1.Tests/obj/Lab1.Tests.csproj.nuget.dgspec.json new file mode 100644 index 0000000..9dd7fdd --- /dev/null +++ b/tests/Lab1.Tests/obj/Lab1.Tests.csproj.nuget.dgspec.json @@ -0,0 +1,260 @@ +{ + "format": 1, + "restore": { + "/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/Lab1.Tests.csproj": {} + }, + "projects": { + "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/Lab1.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/Lab1.csproj", + "projectName": "Lab1", + "projectPath": "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/Lab1.csproj", + "packagesPath": "/Users/timon/.nuget/packages/", + "outputPath": "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/obj/", + "projectStyle": "PackageReference", + "centralPackageVersionsManagementEnabled": true, + "configFilePaths": [ + "/Users/timon/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/opt/homebrew/Cellar/dotnet/9.0.8/libexec/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "allWarningsAsErrors": true, + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Itmo.Dev.Editorconfig": { + "target": "Package", + "version": "[1.0.12, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Collections": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Enumerable": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.MemberAccessibility": { + "target": "Package", + "version": "[1.0.31, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Nullable": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Properties": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "StyleCop.Analyzers": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[1.2.0-beta.507, )", + "versionCentrallyManaged": true + } + }, + "centralPackageVersions": { + "coverlet.collector": "6.0.4", + "Itmo.Dev.Editorconfig": "1.0.12", + "Microsoft.NET.Test.Sdk": "17.14.1", + "SourceKit.Analyzers.Collections": "1.0.50", + "SourceKit.Analyzers.Enumerable": "1.0.50", + "SourceKit.Analyzers.MemberAccessibility": "1.0.31", + "SourceKit.Analyzers.Nullable": "1.0.50", + "SourceKit.Analyzers.Properties": "1.0.50", + "StyleCop.Analyzers": "1.2.0-beta.507", + "xunit": "2.9.3", + "xunit.runner.visualstudio": "3.1.4" + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/opt/homebrew/Cellar/dotnet/9.0.8/libexec/sdk/9.0.109/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/Lab1.Tests.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/Lab1.Tests.csproj", + "projectName": "Lab1.Tests", + "projectPath": "/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/Lab1.Tests.csproj", + "packagesPath": "/Users/timon/.nuget/packages/", + "outputPath": "/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/obj/", + "projectStyle": "PackageReference", + "centralPackageVersionsManagementEnabled": true, + "configFilePaths": [ + "/Users/timon/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/opt/homebrew/Cellar/dotnet/9.0.8/libexec/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/Lab1.csproj": { + "projectPath": "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/Lab1.csproj" + } + } + } + }, + "warningProperties": { + "allWarningsAsErrors": true, + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Itmo.Dev.Editorconfig": { + "target": "Package", + "version": "[1.0.12, )", + "versionCentrallyManaged": true + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.14.1, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Collections": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Enumerable": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.MemberAccessibility": { + "target": "Package", + "version": "[1.0.31, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Nullable": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Properties": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "StyleCop.Analyzers": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[1.2.0-beta.507, )", + "versionCentrallyManaged": true + }, + "coverlet.collector": { + "target": "Package", + "version": "[6.0.4, )", + "versionCentrallyManaged": true + }, + "xunit": { + "target": "Package", + "version": "[2.9.3, )", + "versionCentrallyManaged": true + }, + "xunit.runner.visualstudio": { + "target": "Package", + "version": "[3.1.4, )", + "versionCentrallyManaged": true + } + }, + "centralPackageVersions": { + "coverlet.collector": "6.0.4", + "Itmo.Dev.Editorconfig": "1.0.12", + "Microsoft.NET.Test.Sdk": "17.14.1", + "SourceKit.Analyzers.Collections": "1.0.50", + "SourceKit.Analyzers.Enumerable": "1.0.50", + "SourceKit.Analyzers.MemberAccessibility": "1.0.31", + "SourceKit.Analyzers.Nullable": "1.0.50", + "SourceKit.Analyzers.Properties": "1.0.50", + "StyleCop.Analyzers": "1.2.0-beta.507", + "xunit": "2.9.3", + "xunit.runner.visualstudio": "3.1.4" + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/opt/homebrew/Cellar/dotnet/9.0.8/libexec/sdk/9.0.109/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/tests/Lab1.Tests/obj/Lab1.Tests.csproj.nuget.g.props b/tests/Lab1.Tests/obj/Lab1.Tests.csproj.nuget.g.props new file mode 100644 index 0000000..52e3a63 --- /dev/null +++ b/tests/Lab1.Tests/obj/Lab1.Tests.csproj.nuget.g.props @@ -0,0 +1,27 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/timon/.nuget/packages/ + /Users/timon/.nuget/packages/ + PackageReference + 6.12.4 + + + + + + + + + + + + + + /Users/timon/.nuget/packages/xunit.analyzers/1.18.0 + /Users/timon/.nuget/packages/stylecop.analyzers.unstable/1.2.0.507 + + \ No newline at end of file diff --git a/tests/Lab1.Tests/obj/Lab1.Tests.csproj.nuget.g.targets b/tests/Lab1.Tests/obj/Lab1.Tests.csproj.nuget.g.targets new file mode 100644 index 0000000..13798bb --- /dev/null +++ b/tests/Lab1.Tests/obj/Lab1.Tests.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/tests/Lab1.Tests/obj/project.assets.json b/tests/Lab1.Tests/obj/project.assets.json new file mode 100644 index 0000000..20b86cf --- /dev/null +++ b/tests/Lab1.Tests/obj/project.assets.json @@ -0,0 +1,1377 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "coverlet.collector/6.0.4": { + "type": "package", + "build": { + "build/netstandard2.0/coverlet.collector.targets": {} + } + }, + "Itmo.Dev.Editorconfig/1.0.12": { + "type": "package", + "compile": { + "lib/netstandard2.0/Itmo.Dev.Editorconfig.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Itmo.Dev.Editorconfig.dll": {} + }, + "build": { + "build/Itmo.Dev.Editorconfig.props": {} + } + }, + "Microsoft.CodeCoverage/17.14.1": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard2.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard2.0/Microsoft.CodeCoverage.targets": {} + } + }, + "Microsoft.NET.Test.Sdk/17.14.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "17.14.1", + "Microsoft.TestPlatform.TestHost": "17.14.1" + }, + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + }, + "build": { + "build/net8.0/Microsoft.NET.Test.Sdk.props": {}, + "build/net8.0/Microsoft.NET.Test.Sdk.targets": {} + } + }, + "Microsoft.TestPlatform.ObjectModel/17.14.1": { + "type": "package", + "dependencies": { + "System.Reflection.Metadata": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/17.14.1": { + "type": "package", + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.14.1", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/net8.0/testhost.dll": { + "related": ".deps.json" + } + }, + "runtime": { + "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/net8.0/testhost.dll": { + "related": ".deps.json" + } + }, + "resource": { + "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "build/net8.0/Microsoft.TestPlatform.TestHost.props": {}, + "build/net8.0/Microsoft.TestPlatform.TestHost.targets": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "SourceKit/1.1.50": { + "type": "package" + }, + "SourceKit.Analyzers.Collections/1.0.50": { + "type": "package", + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "SourceKit.Analyzers.Enumerable/1.0.50": { + "type": "package", + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "SourceKit.Analyzers.MemberAccessibility/1.0.31": { + "type": "package", + "dependencies": { + "SourceKit": "1.1.31" + } + }, + "SourceKit.Analyzers.Nullable/1.0.50": { + "type": "package", + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "SourceKit.Analyzers.Properties/1.0.50": { + "type": "package", + "dependencies": { + "SourceKit": "1.1.50" + } + }, + "StyleCop.Analyzers/1.2.0-beta.507": { + "type": "package", + "dependencies": { + "StyleCop.Analyzers.Unstable": "1.2.0.507" + } + }, + "StyleCop.Analyzers.Unstable/1.2.0.507": { + "type": "package" + }, + "System.Collections.Immutable/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Reflection.Metadata/8.0.0": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "xunit/2.9.3": { + "type": "package", + "dependencies": { + "xunit.analyzers": "1.18.0", + "xunit.assert": "2.9.3", + "xunit.core": "[2.9.3]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/xunit.abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": { + "related": ".xml" + } + } + }, + "xunit.analyzers/1.18.0": { + "type": "package" + }, + "xunit.assert/2.9.3": { + "type": "package", + "compile": { + "lib/net6.0/xunit.assert.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/xunit.assert.dll": { + "related": ".xml" + } + } + }, + "xunit.core/2.9.3": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.9.3]", + "xunit.extensibility.execution": "[2.9.3]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.9.3": { + "type": "package", + "dependencies": { + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": { + "related": ".xml" + } + } + }, + "xunit.extensibility.execution/2.9.3": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.9.3]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": { + "related": ".xml" + } + } + }, + "xunit.runner.visualstudio/3.1.4": { + "type": "package", + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + }, + "build": { + "build/net8.0/xunit.runner.visualstudio.props": {} + } + }, + "Lab1/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v9.0", + "dependencies": { + "Itmo.Dev.Editorconfig": "1.0.12", + "SourceKit.Analyzers.Collections": "1.0.50", + "SourceKit.Analyzers.Enumerable": "1.0.50", + "SourceKit.Analyzers.MemberAccessibility": "1.0.31", + "SourceKit.Analyzers.Nullable": "1.0.50", + "SourceKit.Analyzers.Properties": "1.0.50" + }, + "compile": { + "bin/placeholder/Lab1.dll": {} + }, + "runtime": { + "bin/placeholder/Lab1.dll": {} + } + } + } + }, + "libraries": { + "coverlet.collector/6.0.4": { + "sha512": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==", + "type": "package", + "path": "coverlet.collector/6.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "VSTestIntegration.md", + "build/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "build/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "build/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "build/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "build/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "build/netstandard2.0/Mono.Cecil.Mdb.dll", + "build/netstandard2.0/Mono.Cecil.Pdb.dll", + "build/netstandard2.0/Mono.Cecil.Rocks.dll", + "build/netstandard2.0/Mono.Cecil.dll", + "build/netstandard2.0/Newtonsoft.Json.dll", + "build/netstandard2.0/NuGet.Frameworks.dll", + "build/netstandard2.0/NuGet.Versioning.dll", + "build/netstandard2.0/System.Buffers.dll", + "build/netstandard2.0/System.Collections.Immutable.dll", + "build/netstandard2.0/System.Memory.dll", + "build/netstandard2.0/System.Numerics.Vectors.dll", + "build/netstandard2.0/System.Reflection.Metadata.dll", + "build/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "build/netstandard2.0/System.Text.Encodings.Web.dll", + "build/netstandard2.0/System.Text.Json.dll", + "build/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "build/netstandard2.0/coverlet.collector.deps.json", + "build/netstandard2.0/coverlet.collector.dll", + "build/netstandard2.0/coverlet.collector.pdb", + "build/netstandard2.0/coverlet.collector.targets", + "build/netstandard2.0/coverlet.core.dll", + "build/netstandard2.0/coverlet.core.pdb", + "build/netstandard2.0/coverlet.core.xml", + "build/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "coverlet-icon.png", + "coverlet.collector.6.0.4.nupkg.sha512", + "coverlet.collector.nuspec" + ] + }, + "Itmo.Dev.Editorconfig/1.0.12": { + "sha512": "+JwouEfM+SsBCCmP2h2escdpPF1Mx+kTms+lI2kjUaZyBOzR1Xt/LEhrwTQ2pd7cQ9Qpr/ul2MZehGIgUmgRxQ==", + "type": "package", + "path": "itmo.dev.editorconfig/1.0.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Itmo.Dev.Editorconfig.props", + "content/Rules/.editorconfig", + "itmo.dev.editorconfig.1.0.12.nupkg.sha512", + "itmo.dev.editorconfig.nuspec", + "lib/netstandard2.0/Itmo.Dev.Editorconfig.dll" + ] + }, + "Microsoft.CodeCoverage/17.14.1": { + "sha512": "pmTrhfFIoplzFVbhVwUquT+77CbGH+h4/3mBpdmIlYtBi9nAB+kKI6dN3A/nV4DFi3wLLx/BlHIPK+MkbQ6Tpg==", + "type": "package", + "path": "microsoft.codecoverage/17.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "build/netstandard2.0/CodeCoverage/CodeCoverage.config", + "build/netstandard2.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/Cov_x86.config", + "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/amd64/Cov_x64.config", + "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/arm64/Cov_arm64.config", + "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll", + "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "build/netstandard2.0/CodeCoverage/covrun32.dll", + "build/netstandard2.0/CodeCoverage/msdia140.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.props", + "build/netstandard2.0/Microsoft.CodeCoverage.targets", + "build/netstandard2.0/Microsoft.DiaSymReader.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard2.0/Mono.Cecil.Pdb.dll", + "build/netstandard2.0/Mono.Cecil.Rocks.dll", + "build/netstandard2.0/Mono.Cecil.dll", + "build/netstandard2.0/ThirdPartyNotices.txt", + "build/netstandard2.0/alpine/x64/Cov_x64.config", + "build/netstandard2.0/alpine/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/alpine/x64/libInstrumentationEngine.so", + "build/netstandard2.0/arm64/MicrosoftInstrumentationEngine_arm64.dll", + "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/macos/x64/Cov_x64.config", + "build/netstandard2.0/macos/x64/libCoverageInstrumentationMethod.dylib", + "build/netstandard2.0/macos/x64/libInstrumentationEngine.dylib", + "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ubuntu/x64/Cov_x64.config", + "build/netstandard2.0/ubuntu/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/ubuntu/x64/libInstrumentationEngine.so", + "build/netstandard2.0/x64/MicrosoftInstrumentationEngine_x64.dll", + "build/netstandard2.0/x86/MicrosoftInstrumentationEngine_x86.dll", + "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.17.14.1.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.NET.Test.Sdk/17.14.1": { + "sha512": "HJKqKOE+vshXra2aEHpi2TlxYX7Z9VFYkr+E5rwEvHC8eIXiyO+K9kNm8vmNom3e2rA56WqxU+/N9NJlLGXsJQ==", + "type": "package", + "path": "microsoft.net.test.sdk/17.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/net462/Microsoft.NET.Test.Sdk.props", + "build/net462/Microsoft.NET.Test.Sdk.targets", + "build/net8.0/Microsoft.NET.Test.Sdk.Program.cs", + "build/net8.0/Microsoft.NET.Test.Sdk.Program.fs", + "build/net8.0/Microsoft.NET.Test.Sdk.Program.vb", + "build/net8.0/Microsoft.NET.Test.Sdk.props", + "build/net8.0/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp2.0/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp2.0/Microsoft.NET.Test.Sdk.targets", + "build/netstandard2.0/Microsoft.NET.Test.Sdk.props", + "build/netstandard2.0/Microsoft.NET.Test.Sdk.targets", + "buildMultiTargeting/net462/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/net8.0/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/netcoreapp2.0/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/netcoreapp2.0/Microsoft.NET.Test.Sdk.targets", + "buildMultiTargeting/netstandard2.0/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/netstandard2.0/Microsoft.NET.Test.Sdk.targets", + "lib/native/_._", + "lib/net462/_._", + "lib/net8.0/_._", + "microsoft.net.test.sdk.17.14.1.nupkg.sha512", + "microsoft.net.test.sdk.nuspec" + ] + }, + "Microsoft.TestPlatform.ObjectModel/17.14.1": { + "sha512": "xTP1W6Mi6SWmuxd3a+jj9G9UoC850WGwZUps1Wah9r1ZxgXhdJfj1QqDLJkFjHDCvN42qDL2Ps5KjQYWUU0zcQ==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/17.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "microsoft.testplatform.objectmodel.17.14.1.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/17.14.1": { + "sha512": "d78LPzGKkJwsJXAQwsbJJ7LE7D1wB+rAyhHHAaODF+RDSQ0NgMjDFkSA1Djw18VrxO76GlKAjRUhl+H8NL8Z+Q==", + "type": "package", + "path": "microsoft.testplatform.testhost/17.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "build/net8.0/Microsoft.TestPlatform.TestHost.props", + "build/net8.0/Microsoft.TestPlatform.TestHost.targets", + "build/net8.0/x64/testhost.dll", + "build/net8.0/x64/testhost.exe", + "build/net8.0/x86/testhost.x86.dll", + "build/net8.0/x86/testhost.x86.exe", + "lib/net462/_._", + "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net8.0/Microsoft.TestPlatform.Utilities.dll", + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/testhost.deps.json", + "lib/net8.0/testhost.dll", + "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/x64/msdia140.dll", + "lib/net8.0/x86/msdia140.dll", + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "microsoft.testplatform.testhost.17.14.1.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "SourceKit/1.1.50": { + "sha512": "dxG3n6AN1gO3w0cX8ebfH21K+Ga2W9ro+RN1vzJ6NAF8YSzq2HeEnYGVkVHnR8t9M2jklQnHBetbOnB6vaViQA==", + "type": "package", + "path": "sourcekit/1.1.50", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "analyzers/dotnet/cs/SourceKit.dll", + "sourcekit.1.1.50.nupkg.sha512", + "sourcekit.nuspec" + ] + }, + "SourceKit.Analyzers.Collections/1.0.50": { + "sha512": "YfTg4iXGB4q6OqEacV3zXnRLHsAjP0wqh1wQ1rTEJgZDdClnoeY2Za3xI6XEdWTclws4+vf5uIi7dnC/ZImHqw==", + "type": "package", + "path": "sourcekit.analyzers.collections/1.0.50", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "analyzers/dotnet/cs/SourceKit.Analyzers.Collections.dll", + "sourcekit.analyzers.collections.1.0.50.nupkg.sha512", + "sourcekit.analyzers.collections.nuspec" + ] + }, + "SourceKit.Analyzers.Enumerable/1.0.50": { + "sha512": "XKlKz51FfLYkmg7om3fI8Owt/EeXqzuuaJ8AjFdbo4Qkfr5UfjGTELkYOMPsZfGgZskMiVE88PXJHzcYd5ilHw==", + "type": "package", + "path": "sourcekit.analyzers.enumerable/1.0.50", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "analyzers/dotnet/cs/SourceKit.Analyzers.Enumerable.dll", + "sourcekit.analyzers.enumerable.1.0.50.nupkg.sha512", + "sourcekit.analyzers.enumerable.nuspec" + ] + }, + "SourceKit.Analyzers.MemberAccessibility/1.0.31": { + "sha512": "Ri9M3YxJcTO8O64rjm1dXUAxM4otnaNFSSsXaPqrE7+coA02mq2qUY1hRFk0B95/CSkUQUvJR2sr+x2Vz0cDMw==", + "type": "package", + "path": "sourcekit.analyzers.memberaccessibility/1.0.31", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "analyzers/dotnet/cs/SourceKit.Analyzers.MemberAccessibility.dll", + "sourcekit.analyzers.memberaccessibility.1.0.31.nupkg.sha512", + "sourcekit.analyzers.memberaccessibility.nuspec" + ] + }, + "SourceKit.Analyzers.Nullable/1.0.50": { + "sha512": "HgOw15lWBhu3NwwXsX48U8TZqCUgyVLwzESUKk8+seb7taDEdq7v1Hc7VOP9oWEvCbj/6DmCfyI4qyS0v8MrHg==", + "type": "package", + "path": "sourcekit.analyzers.nullable/1.0.50", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "analyzers/dotnet/cs/SourceKit.Analyzers.Nullable.dll", + "sourcekit.analyzers.nullable.1.0.50.nupkg.sha512", + "sourcekit.analyzers.nullable.nuspec" + ] + }, + "SourceKit.Analyzers.Properties/1.0.50": { + "sha512": "yScfY0yhCnkdLb0weAG3N/XXsUGBta8bphvv+rWwInx/DiPMi8wGBHstqRJygmrhzeAp7b91+Gx+aIQ8Cr3pUg==", + "type": "package", + "path": "sourcekit.analyzers.properties/1.0.50", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "analyzers/dotnet/cs/SourceKit.Analyzers.Properties.dll", + "sourcekit.analyzers.properties.1.0.50.nupkg.sha512", + "sourcekit.analyzers.properties.nuspec" + ] + }, + "StyleCop.Analyzers/1.2.0-beta.507": { + "sha512": "/FtugDT66cKJJ+GGH7rNpG6UDrT4iIWz45M6lrXXHobDUFDHw+q5VgkbiR+6ffTO564ge7w6fQh/eoQhVdJO8Q==", + "type": "package", + "path": "stylecop.analyzers/1.2.0-beta.507", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "THIRD-PARTY-NOTICES.txt", + "stylecop.analyzers.1.2.0-beta.507.nupkg.sha512", + "stylecop.analyzers.nuspec" + ] + }, + "StyleCop.Analyzers.Unstable/1.2.0.507": { + "sha512": "gTY3IQdRqDJ4hbhSA3e/R48oE8b/OiKfvwkt1QdNVfrJK2gMHBV8ldaHJ885jxWZfllK66soa/sdcjh9bX49Tw==", + "type": "package", + "path": "stylecop.analyzers.unstable/1.2.0.507", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "THIRD-PARTY-NOTICES.txt", + "analyzers/dotnet/cs/StyleCop.Analyzers.CodeFixes.dll", + "analyzers/dotnet/cs/StyleCop.Analyzers.dll", + "analyzers/dotnet/cs/de-DE/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/en-GB/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/es-MX/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr-FR/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl-PL/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/StyleCop.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru-RU/StyleCop.Analyzers.resources.dll", + "rulesets/StyleCopAnalyzersDefault.ruleset", + "stylecop.analyzers.unstable.1.2.0.507.nupkg.sha512", + "stylecop.analyzers.unstable.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "System.Collections.Immutable/8.0.0": { + "sha512": "AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==", + "type": "package", + "path": "system.collections.immutable/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Collections.Immutable.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets", + "lib/net462/System.Collections.Immutable.dll", + "lib/net462/System.Collections.Immutable.xml", + "lib/net6.0/System.Collections.Immutable.dll", + "lib/net6.0/System.Collections.Immutable.xml", + "lib/net7.0/System.Collections.Immutable.dll", + "lib/net7.0/System.Collections.Immutable.xml", + "lib/net8.0/System.Collections.Immutable.dll", + "lib/net8.0/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "system.collections.immutable.8.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Reflection.Metadata/8.0.0": { + "sha512": "ptvgrFh7PvWI8bcVqG5rsA/weWM09EnthFHR5SCnS6IN+P4mj6rE1lBDC4U8HL9/57htKAqy4KQ3bBj84cfYyQ==", + "type": "package", + "path": "system.reflection.metadata/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Reflection.Metadata.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets", + "lib/net462/System.Reflection.Metadata.dll", + "lib/net462/System.Reflection.Metadata.xml", + "lib/net6.0/System.Reflection.Metadata.dll", + "lib/net6.0/System.Reflection.Metadata.xml", + "lib/net7.0/System.Reflection.Metadata.dll", + "lib/net7.0/System.Reflection.Metadata.xml", + "lib/net8.0/System.Reflection.Metadata.dll", + "lib/net8.0/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "system.reflection.metadata.8.0.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "xunit/2.9.3": { + "sha512": "TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", + "type": "package", + "path": "xunit/2.9.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "xunit.2.9.3.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/1.18.0": { + "sha512": "OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==", + "type": "package", + "path": "xunit.analyzers/1.18.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "analyzers/dotnet/cs/xunit.analyzers.fixes.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.1.18.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.9.3": { + "sha512": "/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==", + "type": "package", + "path": "xunit.assert/2.9.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "lib/net6.0/xunit.assert.dll", + "lib/net6.0/xunit.assert.xml", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "xunit.assert.2.9.3.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.9.3": { + "sha512": "BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", + "type": "package", + "path": "xunit.core/2.9.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.9.3.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.9.3": { + "sha512": "kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", + "type": "package", + "path": "xunit.extensibility.core/2.9.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "xunit.extensibility.core.2.9.3.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.9.3": { + "sha512": "yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", + "type": "package", + "path": "xunit.extensibility.execution/2.9.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.9.3.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.visualstudio/3.1.4": { + "sha512": "5mj99LvCqrq3CNi06xYdyIAXOEh+5b33F2nErCzI5zWiDdLHXiPXEWFSUAF8zlIv0ZWqjZNCwHTQeAPYbF3pCg==", + "type": "package", + "path": "xunit.runner.visualstudio/3.1.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "build/net472/xunit.abstractions.dll", + "build/net472/xunit.runner.visualstudio.props", + "build/net472/xunit.runner.visualstudio.testadapter.dll", + "build/net8.0/xunit.abstractions.dll", + "build/net8.0/xunit.runner.visualstudio.props", + "build/net8.0/xunit.runner.visualstudio.testadapter.dll", + "lib/net472/_._", + "lib/net8.0/_._", + "xunit.runner.visualstudio.3.1.4.nupkg.sha512", + "xunit.runner.visualstudio.nuspec" + ] + }, + "Lab1/1.0.0": { + "type": "project", + "path": "../../src/Lab1/Lab1.csproj", + "msbuildProject": "../../src/Lab1/Lab1.csproj" + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "Itmo.Dev.Editorconfig >= 1.0.12", + "Lab1 >= 1.0.0", + "Microsoft.NET.Test.Sdk >= 17.14.1", + "SourceKit.Analyzers.Collections >= 1.0.50", + "SourceKit.Analyzers.Enumerable >= 1.0.50", + "SourceKit.Analyzers.MemberAccessibility >= 1.0.31", + "SourceKit.Analyzers.Nullable >= 1.0.50", + "SourceKit.Analyzers.Properties >= 1.0.50", + "StyleCop.Analyzers >= 1.2.0-beta.507", + "coverlet.collector >= 6.0.4", + "xunit >= 2.9.3", + "xunit.runner.visualstudio >= 3.1.4" + ] + }, + "packageFolders": { + "/Users/timon/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/Lab1.Tests.csproj", + "projectName": "Lab1.Tests", + "projectPath": "/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/Lab1.Tests.csproj", + "packagesPath": "/Users/timon/.nuget/packages/", + "outputPath": "/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/obj/", + "projectStyle": "PackageReference", + "centralPackageVersionsManagementEnabled": true, + "configFilePaths": [ + "/Users/timon/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/opt/homebrew/Cellar/dotnet/9.0.8/libexec/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/Lab1.csproj": { + "projectPath": "/Users/timon/Downloads/BrazenFatJR-master/src/Lab1/Lab1.csproj" + } + } + } + }, + "warningProperties": { + "allWarningsAsErrors": true, + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Itmo.Dev.Editorconfig": { + "target": "Package", + "version": "[1.0.12, )", + "versionCentrallyManaged": true + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.14.1, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Collections": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Enumerable": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.MemberAccessibility": { + "target": "Package", + "version": "[1.0.31, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Nullable": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "SourceKit.Analyzers.Properties": { + "target": "Package", + "version": "[1.0.50, )", + "versionCentrallyManaged": true + }, + "StyleCop.Analyzers": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[1.2.0-beta.507, )", + "versionCentrallyManaged": true + }, + "coverlet.collector": { + "target": "Package", + "version": "[6.0.4, )", + "versionCentrallyManaged": true + }, + "xunit": { + "target": "Package", + "version": "[2.9.3, )", + "versionCentrallyManaged": true + }, + "xunit.runner.visualstudio": { + "target": "Package", + "version": "[3.1.4, )", + "versionCentrallyManaged": true + } + }, + "centralPackageVersions": { + "coverlet.collector": "6.0.4", + "Itmo.Dev.Editorconfig": "1.0.12", + "Microsoft.NET.Test.Sdk": "17.14.1", + "SourceKit.Analyzers.Collections": "1.0.50", + "SourceKit.Analyzers.Enumerable": "1.0.50", + "SourceKit.Analyzers.MemberAccessibility": "1.0.31", + "SourceKit.Analyzers.Nullable": "1.0.50", + "SourceKit.Analyzers.Properties": "1.0.50", + "StyleCop.Analyzers": "1.2.0-beta.507", + "xunit": "2.9.3", + "xunit.runner.visualstudio": "3.1.4" + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/opt/homebrew/Cellar/dotnet/9.0.8/libexec/sdk/9.0.109/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/tests/Lab1.Tests/obj/project.nuget.cache b/tests/Lab1.Tests/obj/project.nuget.cache new file mode 100644 index 0000000..5920c8d --- /dev/null +++ b/tests/Lab1.Tests/obj/project.nuget.cache @@ -0,0 +1,34 @@ +{ + "version": 2, + "dgSpecHash": "DbXOvIJjkic=", + "success": true, + "projectFilePath": "/Users/timon/Downloads/BrazenFatJR-master/tests/Lab1.Tests/Lab1.Tests.csproj", + "expectedPackageFiles": [ + "/Users/timon/.nuget/packages/coverlet.collector/6.0.4/coverlet.collector.6.0.4.nupkg.sha512", + "/Users/timon/.nuget/packages/itmo.dev.editorconfig/1.0.12/itmo.dev.editorconfig.1.0.12.nupkg.sha512", + "/Users/timon/.nuget/packages/microsoft.codecoverage/17.14.1/microsoft.codecoverage.17.14.1.nupkg.sha512", + "/Users/timon/.nuget/packages/microsoft.net.test.sdk/17.14.1/microsoft.net.test.sdk.17.14.1.nupkg.sha512", + "/Users/timon/.nuget/packages/microsoft.testplatform.objectmodel/17.14.1/microsoft.testplatform.objectmodel.17.14.1.nupkg.sha512", + "/Users/timon/.nuget/packages/microsoft.testplatform.testhost/17.14.1/microsoft.testplatform.testhost.17.14.1.nupkg.sha512", + "/Users/timon/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", + "/Users/timon/.nuget/packages/sourcekit/1.1.50/sourcekit.1.1.50.nupkg.sha512", + "/Users/timon/.nuget/packages/sourcekit.analyzers.collections/1.0.50/sourcekit.analyzers.collections.1.0.50.nupkg.sha512", + "/Users/timon/.nuget/packages/sourcekit.analyzers.enumerable/1.0.50/sourcekit.analyzers.enumerable.1.0.50.nupkg.sha512", + "/Users/timon/.nuget/packages/sourcekit.analyzers.memberaccessibility/1.0.31/sourcekit.analyzers.memberaccessibility.1.0.31.nupkg.sha512", + "/Users/timon/.nuget/packages/sourcekit.analyzers.nullable/1.0.50/sourcekit.analyzers.nullable.1.0.50.nupkg.sha512", + "/Users/timon/.nuget/packages/sourcekit.analyzers.properties/1.0.50/sourcekit.analyzers.properties.1.0.50.nupkg.sha512", + "/Users/timon/.nuget/packages/stylecop.analyzers/1.2.0-beta.507/stylecop.analyzers.1.2.0-beta.507.nupkg.sha512", + "/Users/timon/.nuget/packages/stylecop.analyzers.unstable/1.2.0.507/stylecop.analyzers.unstable.1.2.0.507.nupkg.sha512", + "/Users/timon/.nuget/packages/system.collections.immutable/8.0.0/system.collections.immutable.8.0.0.nupkg.sha512", + "/Users/timon/.nuget/packages/system.reflection.metadata/8.0.0/system.reflection.metadata.8.0.0.nupkg.sha512", + "/Users/timon/.nuget/packages/xunit/2.9.3/xunit.2.9.3.nupkg.sha512", + "/Users/timon/.nuget/packages/xunit.abstractions/2.0.3/xunit.abstractions.2.0.3.nupkg.sha512", + "/Users/timon/.nuget/packages/xunit.analyzers/1.18.0/xunit.analyzers.1.18.0.nupkg.sha512", + "/Users/timon/.nuget/packages/xunit.assert/2.9.3/xunit.assert.2.9.3.nupkg.sha512", + "/Users/timon/.nuget/packages/xunit.core/2.9.3/xunit.core.2.9.3.nupkg.sha512", + "/Users/timon/.nuget/packages/xunit.extensibility.core/2.9.3/xunit.extensibility.core.2.9.3.nupkg.sha512", + "/Users/timon/.nuget/packages/xunit.extensibility.execution/2.9.3/xunit.extensibility.execution.2.9.3.nupkg.sha512", + "/Users/timon/.nuget/packages/xunit.runner.visualstudio/3.1.4/xunit.runner.visualstudio.3.1.4.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file