У меня есть простое окно со ссылкой на StaticResource в App.xaml.
Определение ресурса App.xaml:
<!-- Standard Text Box Style -->
<Style x:Key="textBoxStyleStd" TargetType="{x:Type TextBox}">
<Setter Property="FontSize" Value="14" />
</Style>
Компоненты окна, использующие ресурс:
<TextBlock Grid.Column="1" Grid.Row="0" Name="stationIdTitle"
Style="{StaticResource textBlockStyleStd}"
VerticalAlignment="Center" HorizontalAlignment="Center"
Text="{LocText Key=Title, Dict={StaticResource Dictionary},
Assembly={StaticResource Assembly}}"/>
При попытке выполнить юнит-тестирование этого окна я получаю сообщение об ошибке:
System.Windows.Markup.XamlParseException: не удается найти ресурс с именем
'{TextBlockStyleStd}'. Имена ресурсов чувствительны к регистру. Ошибка при
объект 'stationIdTitle' в файле разметки
Строка 'Zpg; компонент / guicomponenets / screen / enterstationidscreen.xaml'
23 Позиция 71.
Есть ли способ обойти это? Код моего модульного теста:
[Test]
public void TestEnterKeyPressedNoText()
{
IPickingBusinessObject pickingBusinessObject = mock.StrictMock<IPickingBusinessObject>();
EnterStationIdScreen objectUnderTest = new EnterStationIdScreen(pickingBusinessObject);
Assert.AreEqual(Visibility.Visible, objectUnderTest.stationIdError.Visibility);
Assert.AreEqual("werwe", "oksdf");
Replay();
objectUnderTest.EnterKeyPressed();
Verify();
}