blob: c6a730abe9c5a5aee848bdbf673c72a32203d54d [file] [log] [blame]
/*
* Copyright 2015-2022 the original author or authors.
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v2.0 which
* accompanies this distribution and is available at
*
* https://www.eclipse.org/legal/epl-v20.html
*/
package org.junit.jupiter.migrationsupport.rules;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.Rule;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.rules.TemporaryFolder;
public class ExternalResourceWithoutAdapterTests {
@Rule
public TemporaryFolder folder = new TemporaryFolder();
@BeforeEach
void setup() {
try {
folder.newFile("temp.txt");
}
catch (Exception exception) {
assertTrue(exception.getMessage().equals("the temporary folder has not yet been created"));
}
}
@Test
void checkTemporaryFolder() {
// only needed to invoke testing at all
}
}