How do I import the inbuilt routing service in my integration test?

Just want to what path should I import the routing service defined here https://github.com/emberjs/ember.js/blob/v2.12.0/packages/ember-routing/lib/services/routing.js#L15.

I am doing ```import { RoutingService } from ‘ember-routing’;

const { Service } = Ember;

const injectService = function (type, service) { this.register(service:${type}, service); this.inject.service(type); };