Skip to content

Commit 8e102f7

Browse files
committed
Trying registration builder
1 parent 5571656 commit 8e102f7

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
using Microsoft.VisualStudio.TestTools.UnitTesting;
2+
using Unity;
3+
4+
namespace Registration
5+
{
6+
[TestClass]
7+
public class Native : Unity.Specification.Registration.Native.SpecificationTests
8+
{
9+
public override IUnityContainer GetContainer()
10+
{
11+
return new UnityContainer();
12+
}
13+
}
14+
15+
[TestClass]
16+
public class Extended : Unity.Specification.Registration.Extended.SpecificationTests
17+
{
18+
public override IUnityContainer GetContainer()
19+
{
20+
return new UnityContainer();
21+
}
22+
}
23+
24+
[TestClass]
25+
public class Syntax : Unity.Specification.Registration.Syntax.SpecificationTests
26+
{
27+
public override IUnityContainer GetContainer()
28+
{
29+
return new UnityContainer();
30+
}
31+
}
32+
}

0 commit comments

Comments
 (0)