Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package com.github.timtebeek.betterassertions.review;

import com.github.timtebeek.betterassertions.Book;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

public class BookTest {

@Test
public void test() {
Book book = new Book(
"The Great Gatsby",
"F. Scott Fitzgerald",
1925);

Assertions.assertEquals("The Great Gatsby", book.getTitle());
}
}
Loading