Skip to content

Commit

Permalink
chore: Setup JUnit (#7)
Browse files Browse the repository at this point in the history
* test: Initial JUnit setup

* chore: Fix module name in module-info

* chore: Delete module-info in test directory

* chore: Update workflow name
  • Loading branch information
kkafar authored Mar 30, 2022
1 parent e433715 commit 0425a8c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build project
name: Build & test project

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module io.rpg.rpg {
module io.rpg {
requires javafx.controls;
requires javafx.fxml;
requires javafx.web;
Expand Down
9 changes: 9 additions & 0 deletions src/test/java/io/rpg/MockTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package io.rpg;

import org.junit.jupiter.api.Test;

public class MockTest {
@Test
void mockTest() {
}
}

0 comments on commit 0425a8c

Please sign in to comment.