csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
// Copyright (c) The Avalonia Project. All rights reserved.
|
|
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
|
|
|
using Xunit;
|
|
|
|
namespace Avalonia.Base.UnitTests
|
|
{
|
|
public class StyledPropertyTests
|
|
{
|
|
[Fact]
|
|
public void AddOwnered_Property_Should_Equal_Original()
|
|
{
|
|
var p1 = new StyledProperty<string>(
|
|
"p1",
|
|
typeof(Class1),
|
|
new StyledPropertyMetadata<string>());
|
|
var p2 = p1.AddOwner<Class2>();
|
|
|
|
Assert.Equal(p1, p2);
|
|
Assert.Equal(p1.GetHashCode(), p2.GetHashCode());
|
|
Assert.True(p1 == p2);
|
|
}
|
|
|
|
[Fact]
|
|
public void AddOwnered_Property_Should_Be_Same()
|
|
{
|
|
var p1 = new StyledProperty<string>(
|
|
"p1",
|
|
typeof(Class1),
|
|
new StyledPropertyMetadata<string>());
|
|
var p2 = p1.AddOwner<Class2>();
|
|
|
|
Assert.Same(p1, p2);
|
|
}
|
|
|
|
private class Class1 : AvaloniaObject
|
|
{
|
|
}
|
|
|
|
private class Class2 : AvaloniaObject
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|