File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
tests/Unity.Specification Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments