Ejemplo n.º 1
0
 public void InitializedLocalText_StoresInitialTextAsIs()
 {
     var text = new InitializedLocalText("SomeKey", "  ..SomeText  ");
     Assert.Equal("  ..SomeText  ", text.InitialText);
 }
Ejemplo n.º 2
0
 public void InitializedLocalText_ConstructorCallsBaseProperly()
 {
     var text = new InitializedLocalText("SomeKey", "SomeText");
     Assert.Equal("SomeKey", text.Key);
 }