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

  • 相关阅读:
    GIL 全局解释器
    线程
    队列 Queue 与 生产者消费模型
    进程 与 并发(进程打开方式,互斥锁)
    【JAVA设计模式】单例模式
    【排序】桶排序
    【排序】选择排序
    【排序】插入排序
    【排序】冒泡排序
    JVM 优化之逃逸分析
  • 原文地址:https://www.cnblogs.com/Answer1215/p/12322450.html
Copyright © 2011-2022 走看看