public function testResolveClassWithPrimitivesAndInterfaces()
 {
     $c = new Container();
     $c->bind('IUnitTestSomeRepo', 'UnitTestSomeRepo');
     $class = $c->make('UTestController', [10, 20]);
     $this->assertEquals(10, $class->x);
     $this->assertEquals(20, $class->y);
     $this->assertInstanceOf('UnitTestSomeRepo', $class->repo);
 }