Skip to content

Commit

Permalink
Code: Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldenGnu committed Oct 17, 2024
1 parent 55466b0 commit 9604162
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/test/java/net/nikr/eve/jeveasset/tests/mocks/FakeSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -777,4 +777,24 @@ public void setIndustryJobsHistory(boolean journalHistory) {
public boolean isIndustryJobsHistory() {
throw new UnsupportedOperationException("not implemented");
}

@Override
public void setAssetsContractsOwnerBoth(boolean assetsContractsOwnerBoth) {
throw new UnsupportedOperationException("not implemented");
}

@Override
public boolean isAssetsContractsOwnerBoth() {
throw new UnsupportedOperationException("not implemented");
}

@Override
public void setAssetsContractsOwnerCorporation(boolean assetsContractsOwnerCorporation) {
throw new UnsupportedOperationException("not implemented");
}

@Override
public boolean isAssetsContractsOwnerCorporation() {
throw new UnsupportedOperationException("not implemented");
}
}

0 comments on commit 9604162

Please sign in to comment.