BlingBag.Specs.when_changing_the_account_name.SimulateGettingAccountFromRepository C# (CSharp) Method

SimulateGettingAccountFromRepository() static private method

static private SimulateGettingAccountFromRepository ( ) : Account
return Account
    static Account SimulateGettingAccountFromRepository()
    {
        var account = new Account();
            account.NotifyObservers += x => _eventRaised = x;
            return account;
    }
}
when_changing_the_account_name