Skip to content

Commit

Permalink
Created emtpy test files for classes to be filled out later
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikollai committed Mar 4, 2026
1 parent ac507b6 commit fe0e60e
Show file tree
Hide file tree
Showing 12 changed files with 84 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/test/java/temppackage/ExchangeTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package temppackage;

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

class ExchangeTest {

}
7 changes: 7 additions & 0 deletions src/test/java/temppackage/PlayerTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package temppackage;

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

class PlayerTest {

}
7 changes: 7 additions & 0 deletions src/test/java/temppackage/PortfolioTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package temppackage;

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

class PortfolioTest {

}
7 changes: 7 additions & 0 deletions src/test/java/temppackage/PurchaseTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package temppackage;

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

class PurchaseTest {

}
7 changes: 7 additions & 0 deletions src/test/java/temppackage/SaleTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package temppackage;

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

class SaleTest {

}
7 changes: 7 additions & 0 deletions src/test/java/temppackage/ShareTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package temppackage;

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

class ShareTest {

}
7 changes: 7 additions & 0 deletions src/test/java/temppackage/StockTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package temppackage;

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

class StockTest {

}
7 changes: 7 additions & 0 deletions src/test/java/temppackage/TransactionArchiveTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package temppackage;

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

class TransactionArchiveTest {

}
7 changes: 7 additions & 0 deletions src/test/java/temppackage/TransactionTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package temppackage;

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

class TransactionTest {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package temppackage.calculators;

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

class PurchaseCalculatorTest {

}
7 changes: 7 additions & 0 deletions src/test/java/temppackage/calculators/SaleCalculatorTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package temppackage.calculators;

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

class SaleCalculatorTest {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package temppackage.calculators;

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

class TransactionCalculatorTest {

}

0 comments on commit fe0e60e

Please sign in to comment.