Package com.google.devtools.moe.client.testing

Source Code of com.google.devtools.moe.client.testing.AppContextForTesting

// Copyright 2011 The MOE Authors All Rights Reserved.

package com.google.devtools.moe.client.testing;

import com.google.devtools.moe.client.AppContext;

/**
*
* @author dbentley@google.com (Daniel Bentley)
*/
public class AppContextForTesting {

  public static void initForTest() {
    AppContext.RUN = new AppContext(
        new InMemoryProjectContextFactory(),
        new RecordingUi(),
        null, null);
  }
}
TOP

Related Classes of com.google.devtools.moe.client.testing.AppContextForTesting

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.