We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 337e9a2 commit db10353Copy full SHA for db10353
src/main/java/com/ctci/linkedlists/KthToLastElementTest.java
@@ -0,0 +1,14 @@
1
+package com.ctci.bitmanipulation;
2
+import org.junit.runner.JUnitCore;
3
+import org.junit.runner.Result;
4
+import org.junit.runner.notification.Failure;
5
+public class KthToLastElementTest {
6
+ public static void main(String[] args) {
7
+ //testAssertions();
8
+ Result result = JUnitCore.runClasses(Intersection.class);
9
+ for (Failure failure : result.getFailures()) {
10
+ System.out.println(failure.toString());
11
+ }
12
+ System.out.println("Result == "+result.wasSuccessful());
13
14
+}
0 commit comments