(actual: any)
| 4 | |
| 5 | // http://joel-costigliola.github.io/assertj/ |
| 6 | export function assertThat(actual: any): Assertions { |
| 7 | return new Assertions(actual) |
| 8 | } |
| 9 | |
| 10 | class Assertions { |
| 11 | constructor(private actual: any) { |
no outgoing calls
no test coverage detected
searching dependent graphs…