Skip to content

chore: delete duplicate jobs/v4 samples #8203

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
package functions;

import com.google.cloud.functions.HttpRequest;
import com.google.cloud.functions.HttpResponse;

import java.io.IOException;

import org.junit.Ignore;
import org.junit.Test;

public class AfterTimeoutTest {
/**
* Method under test: {@link AfterTimeout#service(HttpRequest, HttpResponse)}
*/
@Test
@Ignore("TODO: Complete this test")
public void testService() throws IOException, InterruptedException {
// TODO: Complete this test.
// Diffblue AI was unable to find a test

// Arrange
// TODO: Populate arranged inputs
AfterTimeout afterTimeout = null;
HttpRequest request = null;
HttpResponse response = null;

// Act
afterTimeout.service(request, response);

// Assert
// TODO: Add assertions on result
}
}

75 changes: 0 additions & 75 deletions jobs/v4/pom.xml

This file was deleted.

95 changes: 0 additions & 95 deletions jobs/v4/src/main/java/com/example/jobs/CommuteSearchJobs.java

This file was deleted.

This file was deleted.

78 changes: 0 additions & 78 deletions jobs/v4/src/main/java/com/example/jobs/HistogramSearchJobs.java

This file was deleted.

Loading