Renato Athaydes
Renato Athaydes
Issue based on https://github.com/gradle/gradle/issues/5303#issuecomment-387312957 When trying to run Kotlin or Groovy tests, this error occurs: ``` > Task :test FAILED example.MyGroovyTest > initializationError FAILED java.lang.ClassNotFoundException ``` The stack-trace is not...
I wrote this Java test: ```java package example; import org.junit.Test; import static org.hamcrest.CoreMatchers.equalTo; import static org.junit.Assert.assertThat; public class JavaTest { @Test public void test1() { assertThat(Main.greetings(), equalTo("Hello. World!")); } }...
Take this sample program: ```dart import 'package:cli_repl/cli_repl.dart'; void main() async { final repl = Repl(prompt: '> '); await for (final answer in repl.runAsync()) { if (answer == 'exit') break; await...
Hi! Thanks for writing this, it's just what I needed! There's just one issue I found... Running this code: ```dart await for (var line in repl.runAsync()) { print("you typed $line");...
GitHub Actions like `runs` support changing the `working-directory`. This is important as many repositories contain more than one project. I may be missing something, but I can't seem to make...
I'm using the MemoryFileSystem in some of my tests, and they fail only on Windows. I tracked down the cause of the failure to this minimal test of `MemoryDirectory`: ```dart...
This is helpful to compare the behaviour between a "success" and a "fail" run, for example.
### Describe the Bug I am running into segmentation faults very often when invoking backend functions from the browser. I am just starting with WebUI and this makes me think...
I'm using the MemoryFileSystem in some of my tests, and they fail only on Windows. I tracked down the cause of the failure to this minimal test of `MemoryDirectory`: ```dart...
## Steps to Reproduce 1. Create a new Flutter Plugin project. 2. Add a new Gradle project under the `android/` folder called `foo`. 3. Add some Java code to `foo`....