This commit is contained in:
Eugene Sadovoi 2023-05-12 13:30:44 -07:00
Родитель fe8638de09
Коммит 9f7d307c50
5 изменённых файлов: 11 добавлений и 13 удалений

Просмотреть файл

@ -7,10 +7,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Unity.Container", "src\Unit
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Unity.Container.Tests", "tests\Unit\Unity.Container.Tests.csproj", "{659027EF-4495-449B-87F6-943FF958161E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Unity.Container.Benchmarks", "tests\Benchmarks\Unity.Container.Benchmarks.csproj", "{439FAC1C-9784-45E6-B6EA-A9EBDEA8A52B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Benchmarks.Local", "benchmarks\Benchmarks.Local.csproj", "{CFA426F6-6084-4F4A-9D85-A7DB1C93D025}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Unity.Container.Tests.Benchmarks", "tests\Benchmarks\Unity.Container.Tests.Benchmarks.csproj", "{B268CD1C-1DE4-40C9-9F80-5D6E530CFD5A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -25,14 +25,14 @@ Global
{659027EF-4495-449B-87F6-943FF958161E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{659027EF-4495-449B-87F6-943FF958161E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{659027EF-4495-449B-87F6-943FF958161E}.Release|Any CPU.Build.0 = Release|Any CPU
{439FAC1C-9784-45E6-B6EA-A9EBDEA8A52B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{439FAC1C-9784-45E6-B6EA-A9EBDEA8A52B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{439FAC1C-9784-45E6-B6EA-A9EBDEA8A52B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{439FAC1C-9784-45E6-B6EA-A9EBDEA8A52B}.Release|Any CPU.Build.0 = Release|Any CPU
{CFA426F6-6084-4F4A-9D85-A7DB1C93D025}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CFA426F6-6084-4F4A-9D85-A7DB1C93D025}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CFA426F6-6084-4F4A-9D85-A7DB1C93D025}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CFA426F6-6084-4F4A-9D85-A7DB1C93D025}.Release|Any CPU.Build.0 = Release|Any CPU
{B268CD1C-1DE4-40C9-9F80-5D6E530CFD5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B268CD1C-1DE4-40C9-9F80-5D6E530CFD5A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B268CD1C-1DE4-40C9-9F80-5D6E530CFD5A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B268CD1C-1DE4-40C9-9F80-5D6E530CFD5A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

Просмотреть файл

@ -4,7 +4,7 @@ using Unity.Lifetime;
namespace Container.Scope
{
public partial class ScopeTests
public abstract partial class ScopeTests
{
[TestMethod, TestProperty(TESTING_IUC, TRAIT_ADD)]
public void RegisterType()

Просмотреть файл

@ -3,7 +3,7 @@ using Unity;
namespace Container.Scope
{
public partial class ScopeTests
public abstract partial class ScopeTests
{
[TestMethod, TestProperty(TESTING_SPAN, TRAIT_CONTAINS)]
public void ContainsEmptyTest()

Просмотреть файл

@ -5,7 +5,7 @@ using Unity;
namespace Container.Scope
{
public partial class ScopeTests
public abstract partial class ScopeTests
{
[TestMethod, TestProperty(TESTING_SPAN, TRAIT_GET)]
public void GetEmptyTest()

Просмотреть файл

@ -1,6 +1,4 @@
using BenchmarkDotNet.Attributes;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
@ -10,7 +8,7 @@ using static Unity.Storage.Scope;
namespace Container.Scope
{
public partial class ScopeTests
public abstract partial class ScopeTests
{
#region Constants