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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
graph TD A[Start] --> B[Login] B --> C{Is Venue Available?} C -->|Yes| D[Select Venue] C -->|No| E[Search Again] E --> C D --> F[Confirm Booking] F --> G[Make Payment] G --> H[Receive Confirmation] H --> I[End]