-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
src/test/java/org/cryptomator/linux/quickaccess/DolphinPlacesIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package org.cryptomator.linux.quickaccess; | ||
|
||
import org.cryptomator.integrations.quickaccess.QuickAccessServiceException; | ||
import org.junit.jupiter.api.Disabled; | ||
import org.junit.jupiter.api.DisplayName; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.io.TempDir; | ||
|
||
import java.nio.file.Path; | ||
import java.time.Duration; | ||
|
||
public class DolphinPlacesIT { | ||
|
||
@Test | ||
@DisplayName("Adds for 20s an entry to the Dolphin sidebar") | ||
@Disabled | ||
public void testSidebarIntegration(@TempDir Path tmpdir) throws QuickAccessServiceException, InterruptedException { | ||
var entry = new DolphinPlaces().add(tmpdir, "integrations-linux"); | ||
Thread.sleep(Duration.ofSeconds(20)); | ||
entry.remove(); | ||
} | ||
} |