Skip to content

Commit

Permalink
refactor: FalseFriendsTest
Browse files Browse the repository at this point in the history
- Simplify code

Signed-off-by: Hiroshi Miura <[email protected]>
  • Loading branch information
miurahr committed Nov 20, 2024
1 parent b19f659 commit 05f4c8d
Showing 1 changed file with 2 additions and 140 deletions.
142 changes: 2 additions & 140 deletions test/src/org/omegat/languagetools/FalseFriendsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import static org.junit.Assert.assertTrue;

import java.util.List;
import java.util.Map;

import org.junit.Before;
import org.junit.BeforeClass;
Expand All @@ -39,20 +38,10 @@

import org.omegat.core.Core;
import org.omegat.core.TestCore;
import org.omegat.core.data.EntryKey;
import org.omegat.core.data.ExternalTMX;
import org.omegat.core.data.IProject;
import org.omegat.core.data.PrepareTMXEntry;
import org.omegat.core.data.NotLoadedProject;
import org.omegat.core.data.ProjectProperties;
import org.omegat.core.data.ProjectTMX;
import org.omegat.core.data.SourceTextEntry;
import org.omegat.core.data.TMXEntry;
import org.omegat.core.data.TMXEntry.ExternalLinked;
import org.omegat.core.segmentation.Segmenter;
import org.omegat.core.statistics.StatisticsInfo;
import org.omegat.gui.editor.mark.Mark;
import org.omegat.languagetools.LanguageToolWrapper.LanguageToolMarker;
import org.omegat.tokenizer.ITokenizer;
import org.omegat.util.Language;

/**
Expand Down Expand Up @@ -81,141 +70,14 @@ public Language getTargetLanguage() {
return new Language("pl");
}
};

Core.setProject(new IProject() {
public void setTranslation(SourceTextEntry entry, PrepareTMXEntry trans,
boolean defaultTranslation, TMXEntry.ExternalLinked externalLinked) {
}

public void setTranslation(SourceTextEntry entry, PrepareTMXEntry trans,
boolean defaultTranslation, ExternalLinked externalLinked,
AllTranslations previousTranslations) throws OptimisticLockingFail {
}

public void setNote(SourceTextEntry entry, TMXEntry oldTrans, String note) {
}

public void saveProjectProperties() throws Exception {
}

public void saveProject(boolean doTeamSync) {
}

public void iterateByMultipleTranslations(MultipleTranslationsIterator it) {
}

public void iterateByDefaultTranslations(DefaultTranslationsIterator it) {
}

public boolean isProjectModified() {
return false;
}

Core.setProject(new NotLoadedProject() {
public boolean isProjectLoaded() {
return true;
}

public boolean isOrphaned(EntryKey entry) {
return false;
}

public boolean isOrphaned(String source) {
return false;
}

public TMXEntry getTranslationInfo(SourceTextEntry ste) {
return null;
}

public AllTranslations getAllTranslations(SourceTextEntry ste) {
return null;
}

public Map<String, ExternalTMX> getTransMemories() {
return null;
}

public ITokenizer getTargetTokenizer() {
return null;
}

public StatisticsInfo getStatistics() {
return null;
}

public ITokenizer getSourceTokenizer() {
return null;
}

public ProjectProperties getProjectProperties() {
return props;
}

public List<FileInfo> getProjectFiles() {
return null;
}

public Map<Language, ProjectTMX> getOtherTargetLanguageTMs() {
return null;
}

public List<SourceTextEntry> getAllEntries() {
return null;
}

public void compileProject(String sourcePattern) throws Exception {
}

public void closeProject() {
}

public List<String> getSourceFilesOrder() {
return null;
}

public void setSourceFilesOrder(List<String> filesList) {
}

@Override
public void setSegmenter(final Segmenter segmenter) {
}

@Override
public Segmenter getSegmenter() {
return null;
}

@Override
public String getTargetPathForSourceFile(String sourceFile) {
return null;
}

@Override
public boolean isTeamSyncPrepared() {
return false;
}

@Override
public void teamSync() {
}

@Override
public void teamSyncPrepare() throws Exception {
}

@Override
public boolean isRemoteProject() {
return false;
}

@Override
public void commitSourceFiles() throws Exception {
}

@Override
public void compileProjectAndCommit(String sourcePattern, boolean doPostProcessing,
boolean commitTargetFiles) throws Exception {
}
});
LanguageToolWrapper.setBridgeFromCurrentProject();
}
Expand Down

0 comments on commit 05f4c8d

Please sign in to comment.