zoukankan      html  css  js  c++  java
  • [Angular 9 Unit testing] Stronger typing for dependency injection in tests

    In Angular version 8, TestBed.get was deprecated. In Angular version 9, we see why: TestBed.inject<T> is introduced as a type-safe replacement.

    There are two differences between TestBed.get and TestBed.inject<T>:

    1. TestBed.get returns anyTestBed.inject<T> returns a value of type T.
    2. TestBed.get accepts a token of type anyTestBed.inject<T> accepts a token of type Type<T> | InjectionToken<T> | AbstractType<T>.

    The type T in (1) is either a concrete class type, an abstract class type or the value returned by a dependency injection token, as defined by the passed token argument.

    (2) is similar to the fact that Injector#get accepted a token of type any in Angular version 2. This signature was deprecated in Angular version 4 and a method signature similar to TestBed.inject was introduced.

    This means that in practice, we are able to use for example a string or a number as an injector token. However, this has been a deprecated feature for 3 years and should not be used.

    What TestBed.inject means in practice for our tests is that TypeScript now can infer the type of the returned value when resolving dependencies as seen in Listing 1.

    // my.service.spec.ts
    it('infers dependency types', () => {
      // `service` has inferred type `MyService` in Angular version 9
      const service = TestBed.inject(MyService);
    }); 

    More

  • 相关阅读:
    域名系统
    DNS域名解析过程
    服务器常用的状态码
    重绘与重排及它的性能优化
    console.time和console.timeEnd用法
    用CSS开启硬件加速来提高网站性能
    公钥和私钥
    svn conflict 冲突解决
    svn分支开发与主干合并(branch & merge)
    源生js惯性滚动与回弹效果
  • 原文地址:https://www.cnblogs.com/Answer1215/p/12322450.html
Copyright © 2011-2022 走看看