Skip to content

Commit

Permalink
adiciona pacotes nas classes Example e ExampleTest
Browse files Browse the repository at this point in the history
  • Loading branch information
v1d3rm3 committed Jan 5, 2025
1 parent dacc8bc commit c62d6dc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'br.ufrn.testes'
version = '0.0.1-SNAPSHOT'
version = '0.0.1'

java {
toolchain {
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/br/ufrn/testes/exemplo1/Example.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
package br.ufrn.testes.exemplo1;

public class Example {
public int sum(int a, int b) {
return a + b + 1;
Expand Down
2 changes: 2 additions & 0 deletions src/test/java/br/ufrn/testes/exemplo1/ExampleTest.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
package br.ufrn.testes.exemplo1;

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

Expand Down

0 comments on commit c62d6dc

Please sign in to comment.