Skip to content

Commit 7a0742a

Browse files
committed
1 parent 8a961cc commit 7a0742a

File tree

159 files changed

+22186
-8
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+22186
-8
lines changed

Directory.Build.props

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
99
<PackageTags>source;dotnet;nuget;msbuild</PackageTags>
1010
<PackageLicenseExpression>MIT</PackageLicenseExpression>
11+
12+
<RepositoryType>git</RepositoryType>
13+
<PackageProjectUrl>https://github.com/dotnet-campus/CUnit</PackageProjectUrl>
14+
<Copyright>Copyright (c) 2019-2022 dotnet职业技术学院</Copyright>
15+
<RepositoryUrl>https://github.com/dotnet-campus/CUnit</RepositoryUrl>
1116
</PropertyGroup>
1217

1318
<PropertyGroup>

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 dotnet职业技术学院
3+
Copyright (c) 2022 dotnet职业技术学院
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

MSTest.Extensions.sln

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnetCampus.UITest.WPF", "
2323
EndProject
2424
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnetCampus.UITest.WPF.Demo", "demo\dotnetCampus.UITest.WPF.Demo\dotnetCampus.UITest.WPF.Demo.csproj", "{F1D52FE3-2E23-4C7D-AA64-CAC204B4EBBF}"
2525
EndProject
26+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dotnetCampus.UITest.WPFTestHelper", "src\dotnetCampus.UITest.WPFTestHelper\dotnetCampus.UITest.WPFTestHelper.csproj", "{A5195542-3263-436B-8850-A9F4C1E36B2B}"
27+
EndProject
2628
Global
2729
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2830
Debug|Any CPU = Debug|Any CPU
@@ -45,6 +47,10 @@ Global
4547
{F1D52FE3-2E23-4C7D-AA64-CAC204B4EBBF}.Debug|Any CPU.Build.0 = Debug|Any CPU
4648
{F1D52FE3-2E23-4C7D-AA64-CAC204B4EBBF}.Release|Any CPU.ActiveCfg = Release|Any CPU
4749
{F1D52FE3-2E23-4C7D-AA64-CAC204B4EBBF}.Release|Any CPU.Build.0 = Release|Any CPU
50+
{A5195542-3263-436B-8850-A9F4C1E36B2B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
51+
{A5195542-3263-436B-8850-A9F4C1E36B2B}.Debug|Any CPU.Build.0 = Debug|Any CPU
52+
{A5195542-3263-436B-8850-A9F4C1E36B2B}.Release|Any CPU.ActiveCfg = Release|Any CPU
53+
{A5195542-3263-436B-8850-A9F4C1E36B2B}.Release|Any CPU.Build.0 = Release|Any CPU
4854
EndGlobalSection
4955
GlobalSection(SolutionProperties) = preSolution
5056
HideSolutionNode = FALSE
@@ -54,6 +60,7 @@ Global
5460
{7AB54453-67E4-46BC-A314-EBA72C082E7E} = {DA39C42F-B4EA-43F0-AB8C-40987B63F4D6}
5561
{E62C4947-CD69-411D-8749-78C8B2C25ACE} = {1C4D72B5-A7C1-4AAE-A66F-4DDAC5979C28}
5662
{F1D52FE3-2E23-4C7D-AA64-CAC204B4EBBF} = {DA39C42F-B4EA-43F0-AB8C-40987B63F4D6}
63+
{A5195542-3263-436B-8850-A9F4C1E36B2B} = {1C4D72B5-A7C1-4AAE-A66F-4DDAC5979C28}
5764
EndGlobalSection
5865
GlobalSection(ExtensibilityGlobals) = postSolution
5966
SolutionGuid = {21BFBA8A-2901-4A78-A722-0DDA95D3773F}

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,7 @@ There are many ways to contribute to MSTestEnhancer
7474
## License
7575

7676
MSTestEnhancer is licensed under the [MIT license](/LICENSE)
77+
78+
## Thanks
79+
80+
https://github.com/dotnet/wpf-test/

src/MSTest.Extensions/MSTest.Extensions.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@
66
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
77
<PackageId>MSTestEnhancer</PackageId>
88
<Authors>dotnet-campus</Authors>
9-
<RepositoryUrl>https://github.com/dotnet-campus/CUnit.git</RepositoryUrl>
10-
<RepositoryType>git</RepositoryType>
119
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
12-
<PackageProjectUrl>https://github.com/dotnet-campus/CUnit</PackageProjectUrl>
13-
<Copyright>Copyright (c) 2018-2021 dotnet职业技术学院</Copyright>
1410
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1511
<Description>MSTestEnhancer helps you to write unit tests without naming any method. You can write method contract descriptions instead of writing confusing test method name when writing unit tests.</Description>
1612
<PackageReleaseNotes>Add some assersion extensions.</PackageReleaseNotes>

src/dotnetCampus.UITest.WPF/dotnetCampus.UITest.WPF.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66
<UseWPF>true</UseWPF>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
88
<Description>The UITest framework for WPF</Description>
9-
<PackageProjectUrl>https://github.com/dotnet-campus/CUnit</PackageProjectUrl>
10-
<Copyright>Copyright (c) 2021 dotnet职业技术学院</Copyright>
119
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
12-
<RepositoryUrl>https://github.com/dotnet-campus/CUnit</RepositoryUrl>
1310
<PackageTags>dotnet;nuget;msbuild;UITest;WPF;MSTest;TestFramework</PackageTags>
1411
</PropertyGroup>
1512

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
using System;
6+
7+
namespace Microsoft.Test.ApplicationControl
8+
{
9+
/// <summary>
10+
/// Provides configuration information for an <see cref="AutomatedApplication"/>.
11+
/// </summary>
12+
[Serializable]
13+
public class ApplicationSettings
14+
{
15+
/// <summary>
16+
/// The interface used for creation of the AutomatedApplicationImplementation.
17+
/// </summary>
18+
public IAutomatedApplicationImplFactory ApplicationImplementationFactory
19+
{
20+
get;
21+
set;
22+
}
23+
}
24+
}

0 commit comments

Comments
 (0)