1 /******************************************************************************* 2 * Copyright (c) 2009, 2021 Mountainminds GmbH & Co. KG and Contributors 3 * This program and the accompanying materials are made available under 4 * the terms of the Eclipse Public License 2.0 which is available at 5 * http://www.eclipse.org/legal/epl-2.0 6 * 7 * SPDX-License-Identifier: EPL-2.0 8 * 9 * Contributors: 10 * Evgeny Mandrikov - initial API and implementation 11 * 12 *******************************************************************************/ 13 import org.junit.Test; 14 15 import static org.junit.Assert.assertNotNull; 16 17 public class ExampleTest { 18 19 @Test test()20 public void test() { 21 assertNotNull(System.getProperty("foo")); 22 } 23 24 } 25