Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/AppServices/tests/AppServices.Tests.projitems
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<SharedGUID>A3106AE5-5AA9-4307-9041-E9C4232AA7F2</SharedGUID>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<Import_RootNamespace>AppServicesExperiment.Tests</Import_RootNamespace>
<Import_RootNamespace>AppServicesTests</Import_RootNamespace>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion components/CanvasLayout/tests/CanvasLayout.Tests.projitems
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<SharedGUID>A09DC4AC-4111-440E-A188-E787CAE8C0B1</SharedGUID>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<Import_RootNamespace>CanvasLayoutExperiment.Tests</Import_RootNamespace>
<Import_RootNamespace>CanvasLayoutTests</Import_RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)ExampleCanvasLayoutTestClass.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using CommunityToolkit.Tooling.TestGen;
using CommunityToolkit.Tests;

namespace CanvasLayoutExperiment.Tests;
namespace CanvasLayoutTests;

[TestClass]
public partial class ExampleCanvasLayoutTestClass : VisualUITestBase
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
<Page x:Class="CanvasLayoutExperiment.Tests.ExampleCanvasLayoutTestPage"
<Page x:Class="CanvasLayoutTests.ExampleCanvasLayoutTestPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace CanvasLayoutExperiment.Tests;
namespace CanvasLayoutTests;

/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
Expand Down
2 changes: 1 addition & 1 deletion components/CanvasView/tests/CanvasView.Tests.projitems
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<SharedGUID>33D731BA-A745-418B-BF4A-BD8FB9880918</SharedGUID>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<Import_RootNamespace>CanvasViewExperiment.Tests</Import_RootNamespace>
<Import_RootNamespace>CanvasViewTests</Import_RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)ExampleCanvasViewTestClass.cs" />
Expand Down
2 changes: 1 addition & 1 deletion components/CanvasView/tests/ExampleCanvasViewTestClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using CommunityToolkit.Tooling.TestGen;
using CommunityToolkit.Tests;

namespace CanvasViewExperiment.Tests;
namespace CanvasViewTests;

[TestClass]
public partial class ExampleCanvasViewTestClass : VisualUITestBase
Expand Down
2 changes: 1 addition & 1 deletion components/CanvasView/tests/ExampleCanvasViewTestPage.xaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
<Page x:Class="CanvasViewExperiment.Tests.ExampleCanvasViewTestPage"
<Page x:Class="CanvasViewTests.ExampleCanvasViewTestPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace CanvasViewExperiment.Tests;
namespace CanvasViewTests;

/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
Expand Down
2 changes: 1 addition & 1 deletion components/DataTable/tests/DataTable.Tests.projitems
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<SharedGUID>758CD4BC-2E2C-4FAD-8C96-BD73E0EF128B</SharedGUID>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<Import_RootNamespace>DataTableExperiment.Tests</Import_RootNamespace>
<Import_RootNamespace>DataTableTests</Import_RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)DataTableLayoutTestClass.cs" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
<Page x:Class="DataTableExperiment.Tests.DataTableColumnAutoSizeTestPage"
<Page x:Class="DataTableTests.DataTableColumnAutoSizeTestPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="using:CommunityToolkit.WinUI.Controls"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace DataTableExperiment.Tests;
namespace DataTableTests;

/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
Expand Down
2 changes: 1 addition & 1 deletion components/DataTable/tests/DataTableLayoutTestClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using CommunityToolkit.Tests;
using CommunityToolkit.WinUI.Controls;

namespace DataTableExperiment.Tests;
namespace DataTableTests;

/// <summary>
/// Class for testing various aspects of layout in relation to DataTable components.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<SharedGUID>22BE50B3-9810-4304-899E-6D7AF9D3147A</SharedGUID>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<Import_RootNamespace>DependencyPropertyGeneratorExperiment.Tests</Import_RootNamespace>
<Import_RootNamespace>DependencyPropertyGeneratorTests</Import_RootNamespace>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<SharedGUID>47BFA618-6EF6-426A-B7CB-D8F2CEA68302</SharedGUID>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<Import_RootNamespace>Extensions.DependencyInjectionExperiment.Tests</Import_RootNamespace>
<Import_RootNamespace>Extensions.DependencyInjection.Tests</Import_RootNamespace>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using CommunityToolkit.Tests;
using CommunityToolkit.Labs.WinUI.MarkdownTextBlock;

namespace MarkdownTextBlockExperiment.Tests;
namespace MarkdownTextBlockTests;

[TestClass]
public partial class ExampleMarkdownTextBlockTestClass : VisualUITestBase
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
<Page x:Class="MarkdownTextBlockExperiment.Tests.ExampleMarkdownTextBlockTestPage"
<Page x:Class="MarkdownTextBlockTests.ExampleMarkdownTextBlockTestPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="using:CommunityToolkit.Labs.WinUI.MarkdownTextBlock"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace MarkdownTextBlockExperiment.Tests;
namespace MarkdownTextBlockTests;

/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<SharedGUID>6F0FA793-7CF0-41F9-B7D9-260039B62C8A</SharedGUID>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<Import_RootNamespace>MarkdownTextBlockExperiment.Tests</Import_RootNamespace>
<Import_RootNamespace>MarkdownTextBlockTests</Import_RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)ExampleMarkdownTextBlockTestClass.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using CommunityToolkit.Tests;
using CommunityToolkit.Tooling.TestGen;

namespace MarqueeTextExperiment.Tests;
namespace MarqueeTextTests;

[TestClass]
public partial class ExampleMarqueeTextTestClass : VisualUITestBase
Expand Down
4 changes: 2 additions & 2 deletions components/MarqueeText/tests/ExampleMarqueeTextTestPage.xaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
<Page x:Class="MarqueeTextExperiment.Tests.ExampleMarqueeTextTestPage"
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
<Page x:Class="MarqueeTextTests.ExampleMarqueeTextTestPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace MarqueeTextExperiment.Tests;
namespace MarqueeTextTests;

/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
Expand Down
2 changes: 1 addition & 1 deletion components/MarqueeText/tests/MarqueeText.Tests.projitems
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<SharedGUID>C5CF2EF7-F605-4D62-95DB-B8C05C8799E0</SharedGUID>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<Import_RootNamespace>MarqueeTextExperiment.Tests</Import_RootNamespace>
<Import_RootNamespace>MarqueeTextTests</Import_RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)ExampleMarqueeTextTestClass.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<SharedGUID>695EB17B-60C6-4D00-9D3F-1BC54B6A9500</SharedGUID>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<Import_RootNamespace>NotificationsExperiment.Tests</Import_RootNamespace>
<Import_RootNamespace>NotificationsTests</Import_RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)TestAssertHelper.cs" />
Expand Down
2 changes: 1 addition & 1 deletion components/Notifications/tests/TestAssertHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

#nullable disable
namespace NotificationsExperiment.Tests;
namespace NotificationsTests;

[TestClass]
public class TestAssertHelper
Expand Down
2 changes: 1 addition & 1 deletion components/Notifications/tests/TestMail.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

#nullable disable
namespace NotificationsExperiment.Tests;
namespace NotificationsTests;

[TestClass]
public class TestMail
Expand Down
2 changes: 1 addition & 1 deletion components/Notifications/tests/TestTileContentBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

#nullable disable
namespace NotificationsExperiment.Tests;
namespace NotificationsTests;

[TestClass]
public class TestTileContentBuilder
Expand Down
2 changes: 1 addition & 1 deletion components/Notifications/tests/TestToastArguments.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

#nullable disable
namespace NotificationsExperiment.Tests;
namespace NotificationsTests;

[TestClass]
public class TestToastArguments
Expand Down
2 changes: 1 addition & 1 deletion components/Notifications/tests/TestToastContentBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

#nullable disable
namespace NotificationsExperiment.Tests;
namespace NotificationsTests;

[TestClass]
public class TestToastContentBuilder
Expand Down
2 changes: 1 addition & 1 deletion components/Notifications/tests/TestWeather.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

#nullable disable
namespace NotificationsExperiment.Tests;
namespace NotificationsTests;

[TestClass]
public class TestWeather
Expand Down
2 changes: 1 addition & 1 deletion components/Notifications/tests/Test_Adaptive_Xml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

#nullable disable
namespace NotificationsExperiment.Tests;
namespace NotificationsTests;

[TestClass]
public class Test_Adaptive_Xml
Expand Down
2 changes: 1 addition & 1 deletion components/Notifications/tests/Test_Badge_Xml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

#nullable disable
namespace NotificationsExperiment.Tests;
namespace NotificationsTests;

[TestClass]
public class Test_Badge_Xml
Expand Down
2 changes: 1 addition & 1 deletion components/Notifications/tests/Test_Tile_Xml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

#nullable disable
namespace NotificationsExperiment.Tests;
namespace NotificationsTests;

[TestClass]
public class Test_Tile_Xml
Expand Down
2 changes: 1 addition & 1 deletion components/Notifications/tests/Test_Toast_Xml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

#nullable disable
namespace NotificationsExperiment.Tests;
namespace NotificationsTests;

[TestClass]
public class Test_Toast_Xml
Expand Down
2 changes: 1 addition & 1 deletion components/Notifications/tests/TextXboxModern.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;

#nullable disable
namespace NotificationsExperiment.Tests;
namespace NotificationsTests;

[TestClass]
public class TextXboxModern
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<SharedGUID>04511143-C2A3-4893-810D-3C1EA2877430</SharedGUID>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<Import_RootNamespace>OpacityMaskViewExperiment.Tests</Import_RootNamespace>
<Import_RootNamespace>OpacityMaskViewTests</Import_RootNamespace>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion components/Ribbon/tests/Ribbon.Tests.projitems
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<SharedGUID>C18B1738-4AFB-42D9-AC10-298B8F45B71C</SharedGUID>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<Import_RootNamespace>RibbonExperiment.Tests</Import_RootNamespace>
<Import_RootNamespace>RibbonTests</Import_RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)RibbonTestClass.cs" />
Expand Down
2 changes: 1 addition & 1 deletion components/Ribbon/tests/RibbonTestClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using CommunityToolkit.Tooling.TestGen;
using CommunityToolkit.WinUI.Controls;

namespace RibbonExperiment.Tests;
namespace RibbonTests;

[TestClass]
public partial class RibbonTestClass : VisualUITestBase
Expand Down
2 changes: 1 addition & 1 deletion components/Ribbon/tests/RibbonTestPage.xaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
<Page x:Class="RibbonExperiment.Tests.RibbonTestPage"
<Page x:Class="RibbonTests.RibbonTestPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="using:CommunityToolkit.WinUI.Controls"
Expand Down
2 changes: 1 addition & 1 deletion components/Ribbon/tests/RibbonTestPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace RibbonExperiment.Tests;
namespace RibbonTests;

public sealed partial class RibbonTestPage : Page
{
Expand Down
2 changes: 1 addition & 1 deletion components/RivePlayer/tests/ExampleRivePlayerTestClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using CommunityToolkit.Tests;
using CommunityToolkit.Labs.WinUI.Rive;

namespace RivePlayerExperiment.Tests;
namespace RivePlayerTests;

// Track https://github.com/CommunityToolkit/Labs-Windows/issues/567
#if !WINDOWS_WINAPPSDK
Expand Down
2 changes: 1 addition & 1 deletion components/RivePlayer/tests/ExampleRivePlayerTestPage.xaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
<Page x:Class="RivePlayerExperiment.Tests.ExampleRivePlayerTestPage"
<Page x:Class="RivePlayerTests.ExampleRivePlayerTestPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace RivePlayerExperiment.Tests;
namespace RivePlayerTests;

/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
Expand Down
2 changes: 1 addition & 1 deletion components/RivePlayer/tests/RivePlayer.Tests.projitems
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<SharedGUID>CE024C8F-3AB7-409E-B3D6-684B88C6054B</SharedGUID>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<Import_RootNamespace>RivePlayerExperiment.Tests</Import_RootNamespace>
<Import_RootNamespace>RivePlayerTests</Import_RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)ExampleRivePlayerTestClass.cs" />
Expand Down
2 changes: 1 addition & 1 deletion components/Shimmer/tests/ExampleShimmerTestClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using CommunityToolkit.Tooling.TestGen;
using CommunityToolkit.Tests;

namespace ShimmerExperiment.Tests;
namespace ShimmerTests;

[TestClass]
public partial class ExampleShimmerTestClass : VisualUITestBase
Expand Down
2 changes: 1 addition & 1 deletion components/Shimmer/tests/ExampleShimmerTestPage.xaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
<Page x:Class="ShimmerExperiment.Tests.ExampleShimmerTestPage"
<Page x:Class="ShimmerTests.ExampleShimmerTestPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
Expand Down
Loading
Loading