Created
November 13, 2014 20:58
-
-
Save hjerpbakk/c36bf4d2f93e4d9b7956 to your computer and use it in GitHub Desktop.
Resolve_RegisteredPremadeObject_ReturnsTheObject
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
var calculator = new Calculator(); | |
m_fermiContainer.Register<ICalculator, Calculator>(() => calculator); | |
var calculator2 = m_fermiContainer.Resolve<ICalculator>(); | |
Assert.AreSame(calculator, calculator2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment