public IEnumerator TestBadResourcePath()
 {
     PreInstall();
     Assert.Throws(() => FooInstaller.InstallFromResource("TestScriptableObjectInstallers/SDFSDFSDF", Container));
     PostInstall();
     yield break;
 }
예제 #2
0
        public void TestZeroArgs()
        {
            FooInstaller.InstallFromResource("TestScriptableObjectInstallers/FooInstaller", Container);

            Initialize();

            FixtureUtil.AssertResolveCount <Foo>(Container, 1);
        }
        public IEnumerator TestZeroArgs()
        {
            PreInstall();
            FooInstaller.InstallFromResource("TestScriptableObjectInstallers/FooInstaller", Container);

            PostInstall();

            FixtureUtil.AssertResolveCount <Foo>(Container, 1);
            yield break;
        }
예제 #4
0
 public void TestBadResourcePath()
 {
     Assert.Throws(() => FooInstaller.InstallFromResource("TestScriptableObjectInstallers/SDFSDFSDF", Container));
     Initialize();
 }
예제 #5
0
 public void TestBadResourcePath()
 {
     FooInstaller.InstallFromResource("TestMonoInstallers/SDFSDFSDF", Container);
     Initialize();
 }