Skip to content
This repository has been archived by the owner on Apr 2, 2021. It is now read-only.

Commit

Permalink
#1 First basic test on junit5
Browse files Browse the repository at this point in the history
  • Loading branch information
nixel2007 committed Nov 13, 2018
1 parent 0f4ad6c commit e6ddf54
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.github.gtache.lsp.settings;

import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;

class TimeoutSettingsTest {

private TimeoutSettings settings = TimeoutSettings.getInstance();

@Test
void getDisplayName() {
String displayName = settings.getDisplayName();
assertEquals("Timeouts", displayName);
}
}

0 comments on commit e6ddf54

Please sign in to comment.