forked from iterate-ch/rococoa
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from umjammer/0.8.11
0.8.11
- Loading branch information
Showing
7 changed files
with
64 additions
and
291 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
263 changes: 0 additions & 263 deletions
263
rococoa-contrib/src/main/java/org/rococoa/cocoa/coregraphics/RococaRobot.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ | |
import java.util.concurrent.Executors; | ||
import java.util.concurrent.atomic.AtomicReference; | ||
|
||
import org.junit.jupiter.api.Disabled; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.condition.DisabledIfEnvironmentVariable; | ||
import org.rococoa.cocoa.foundation.NSString; | ||
|
@@ -20,29 +19,13 @@ | |
|
||
|
||
/** | ||
* Test1. | ||
* Integration Test. | ||
* | ||
* @author <a href="mailto:[email protected]">Naohide Sano</a> (nsano) | ||
* @version 0.00 2023-06-30 nsano initial version <br> | ||
*/ | ||
public class Test1 { | ||
|
||
@Test | ||
@Disabled | ||
void test1() throws Exception { | ||
// MethodHandle methodHandleFieldDirect = lookup.unreflectGetter(fieldName); | ||
// CallSite callSiteField = new ConstantCallSite(methodHandleFieldDirect); | ||
// methodHandleFieldDirect = callSiteField.dynamicInvoker(); | ||
// name = (String) methodHandleFieldDirect.invokeExact(new Employee()); | ||
// | ||
// | ||
////Lookup invoke dynamic | ||
// methodType = MethodType.methodType(String.class); | ||
// methodHandle = lookup.findVirtual(Employee.class, "getName", methodType); | ||
// CallSite callSiteMethod = new ConstantCallSite(methodHandleFieldDirect); | ||
// methodHandle = callSiteMethod.dynamicInvoker(); | ||
} | ||
|
||
@Test | ||
@DisabledIfEnvironmentVariable(named = "GITHUB_WORKFLOW", matches = ".*") | ||
void test2() throws Exception { | ||
|
Oops, something went wrong.