We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9fae99 commit ac33c1bCopy full SHA for ac33c1b
pkg/ddc/alluxio/ufs_test.go
@@ -907,6 +907,12 @@ func TestFindUnmountedUFS(t *testing.T) {
907
}
908
909
910
+// TestUpdateMountTime verifies if AlluxioEngine's updateMountTime method correctly updates runtime's MountTime status.
911
+// It creates a runtime with outdated MountTime, executes the update method, then checks if MountTime gets refreshed timestamp.
912
+//
913
+// param: t *testing.T - The testing context used for running the test and reporting failures.
914
915
+// returns: None (This is a test function and does not return any value.)
916
func TestUpdateMountTime(t *testing.T) {
917
yesterday := time.Now().AddDate(0, 0, -1)
918
0 commit comments