Skip to content

Commit

Permalink
all tests OK
Browse files Browse the repository at this point in the history
  • Loading branch information
leleuj committed Dec 1, 2023
1 parent 76ee155 commit 43dd234
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/test/java/com/casinthecloud/simpletest/MainAll.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ public static void main(final String... args) throws Exception {

MainSAMLDelegateCAS.main(args);
MainSAMLDelegateOIDC.main(args);
MainSAMLDelegateSAML.main(args);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,12 @@
import com.casinthecloud.simpletest.cas.CasDelegate;
import com.casinthecloud.simpletest.cas.CasSAML2Login;
import com.casinthecloud.simpletest.execution.Execution;
import lombok.val;

public class MainSAMLDelegateSAML {

public static void main(final String... args) throws Exception {
new Execution(() -> {
val login = new CasSAML2Login(new CasDelegate(2, "SAML2Client", new CasSAML2Login()));
login.setCasPrefixUrl("http://oidc-server:8080/cas");
return login;
return new CasSAML2Login(new CasDelegate(1, "SAML2Client", new CasSAML2Login()));
}).launch();
}
}

0 comments on commit 43dd234

Please sign in to comment.