/* * Copyright (c) 2002-2012 Alibaba Group Holding Limited. * All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.alibaba.citrus.test; import static org.junit.Assert.*; import java.io.File; /** * 用来初始化测试环境的静态辅助类。 * * @author Michael Zhou */ public class TestEnvStatic { private static final TestEnv env = new TestEnv().init(); public static final File basedir = env.getBasedir(); public static final File srcdir = env.getSrcdir(); public static final File destdir = env.getDestdir(); public static final File javaHome = TestUtil.getJavaHome(); /** 假如单元测试类没有显式地引用任何常量,那么调用这个方法可以确保测试环境被初始化。 */ public static void init() { assertNotNull(env); } }