Searched refs:f (Results 1 – 9 of 9) sorted by relevance
32 with open("res/values-{0}/strings.xml".format(locale), "w") as f:33 f.write(template.format(locale))
126 Failure f = new Failure(TEST_DESCRIPTION, new RuntimeException("I failed.")); in testLogcatOnFailure() local127 listener.testFailure(f); in testLogcatOnFailure()174 Failure f = new Failure(testDescription, new RuntimeException("I failed.")); in testRetrievingLogcat() local175 listener.testFailure(f); in testRetrievingLogcat()318 Failure f = new Failure(TEST_DESCRIPTION, new RuntimeException("I failed.")); in testMultipleIterations() local325 listener.testFailure(f); in testMultipleIterations()332 listener.testFailure(f); in testMultipleIterations()
544 return argThat(f -> f.getParent().contains(parentName) && f.getName().equals(filename)); in getExactFileNameMatcher()551 f -> in getPartialFileNameMatcher()552 f.getParent().contains(parentName) in getPartialFileNameMatcher()553 && f.getName().contains(component) in getPartialFileNameMatcher()555 .allMatch(c -> f.getName().contains(c))); in getPartialFileNameMatcher()
276 f -> { in testTimestampScheduling_respectsSuiteTimeout()277 if (!(f.getException() instanceof TestTimedOutException)) { in testTimestampScheduling_respectsSuiteTimeout()281 (TestTimedOutException) f.getException(); in testTimestampScheduling_respectsSuiteTimeout()
134 f -> { in testOverTimeTest_throwsTestTimedOutException()135 if (!(f.getException() instanceof TestTimedOutException)) { in testOverTimeTest_throwsTestTimedOutException()139 (TestTimedOutException) f.getException(); in testOverTimeTest_throwsTestTimedOutException()
432 f -> ((FrameworkMethod) f).getName().contains(methodName))); in getMethodNameMatcher()
175 .map(f -> Pattern.compile(f).matcher(name)) in isIgnored()
272 } catch (IOException f) { in getConfigurationArgument()
364 protected File writeToFile(File f, byte[] content) throws IOException { in writeToFile() argument365 Files.write(f.toPath(), content); in writeToFile()366 return f; in writeToFile()