classDiagram
class User {
+String username
+String email
+login()
+book()
}
class Booking {
+Int bookingID
+Date date
+String status
+cancel()
+update()
}
class Venue {
+Int venueID
+String name
+String location
+getAvailability()
+setAvailability()
}
User --|> Booking : makes
Booking --|> Venue : has
Last active
September 30, 2023 10:38
-
-
Save koolamusic/a3fe4e487033e0d8a73ef315a285c399 to your computer and use it in GitHub Desktop.
Blog Mermaids
sequenceDiagram
participant Developer
participant LLM
Developer->>LLM: Generate "failing" and "passing" inputs
LLM-->>Developer: Inputs generated
Developer->>LLM: Test application with generated inputs
LLM-->>Developer: Return test results
Author
koolamusic
commented
Sep 28, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment