Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #228 from galasa-dev/unimpl-methods
Browse files Browse the repository at this point in the history
Add unimplemented methods in MockFramework and MockFrameworkInitialisation
  • Loading branch information
jadecarino authored May 28, 2024
2 parents bf280f5 + d1a92d2 commit bf4d013
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import dev.galasa.framework.spi.IConfidentialTextService;
import dev.galasa.framework.spi.IConfigurationPropertyStoreService;
import dev.galasa.framework.spi.IDynamicStatusStoreService;
import dev.galasa.framework.spi.IEventsService;
import dev.galasa.framework.spi.IFramework;
import dev.galasa.framework.spi.IFrameworkRuns;
import dev.galasa.framework.spi.IResourcePoolingService;
Expand Down Expand Up @@ -124,4 +125,9 @@ public SharedEnvironmentRunType getSharedEnvironmentRunType() throws Configurati
throw new UnsupportedOperationException("Unimplemented method 'getAuthStore'");
}

@Override
public @NotNull IEventsService getEventsService() {
throw new UnsupportedOperationException("Unimplemented method 'getEventsService'");
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@
import dev.galasa.framework.spi.CertificateStoreException;
import dev.galasa.framework.spi.ConfidentialTextException;
import dev.galasa.framework.spi.DynamicStatusStoreException;
import dev.galasa.framework.spi.EventsException;
import dev.galasa.framework.spi.ICertificateStoreService;
import dev.galasa.framework.spi.IConfidentialTextService;
import dev.galasa.framework.spi.IConfigurationPropertyStore;
import dev.galasa.framework.spi.IDynamicStatusStore;
import dev.galasa.framework.spi.IEventsService;
import dev.galasa.framework.spi.IFramework;
import dev.galasa.framework.spi.IFrameworkInitialisation;
import dev.galasa.framework.spi.IResultArchiveStoreService;
Expand Down Expand Up @@ -120,4 +122,9 @@ public void registerCredentialsStore(@NotNull ICredentialsStore credentialsStore
public @NotNull IFramework getFramework() {
throw new UnsupportedOperationException("Unimplemented method 'getFramework'");
}

@Override
public void registerEventsService(@NotNull IEventsService eventsService) throws EventsException {
throw new UnsupportedOperationException("Unimplemented method 'registerEventsService'");
}
}
2 changes: 0 additions & 2 deletions release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,3 @@ framework:
obr: true
isolated: true
codecoverage: true


0 comments on commit bf4d013

Please sign in to comment.