Skip to content

Commit

Permalink
Moved common test classes to common package.
Browse files Browse the repository at this point in the history
  • Loading branch information
renelink committed May 4, 2024
1 parent f22c502 commit bf566f2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package com.link_intersystems.carrental.offer.ui;
package com.link_intersystems.carrental;

import javax.swing.*;
import java.awt.event.ActionEvent;

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

class MockAction extends AbstractAction {
public class MockAction extends AbstractAction {

private boolean performed = false;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.link_intersystems.carrental.offer.ui;
package com.link_intersystems.carrental;

import org.junit.jupiter.api.Assertions;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.link_intersystems.carrental.offer.ui;

import com.link_intersystems.carrental.MockAction;
import com.link_intersystems.carrental.ViewControl;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package com.link_intersystems.carrental.offer.ui;

import com.link_intersystems.carrental.MockAction;
import com.link_intersystems.carrental.ViewControl;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

import javax.swing.*;
import javax.swing.table.TableModel;
import java.awt.event.ActionEvent;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
Expand Down

0 comments on commit bf566f2

Please sign in to comment.