This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | public class When_Updating_Registration_On_Registered_Client : With<Client> | |
| { | |
| protected override IEnumerable<IEvent> Given() | |
| { | |
| yield return new ClientRegisteredEvent("1234", "http://my.channel.com"); | |
| } | |
| protected override void When(Client client) | |
| { | |
| client.UpdateRegistration("http://new.channel.com"); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | public class BrilliantLogger | |
| { | |
| ... | |
| Dictionary<string,string> _selectedCategories; | |
| ... | |
| public void Log(string message, string logCategory) | |
| { | 
NewerOlder