awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 مستودعات

Awesome GitHub RepositoriesActivity Logic Testing

Testing focused on the individual business logic of workflow activities in isolation from the engine.

Distinct from Unit Testing: Specifically targets the logic of a single workflow activity rather than general application unit testing.

Explore 3 awesome GitHub repositories matching testing & quality assurance · Activity Logic Testing. Refine with filters or upvote what's useful.

Awesome Activity Logic Testing GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • howdyai/botkitالصورة الرمزية لـ howdyai

    howdyai/botkit

    11,585عرض على GitHub↗

    Botkit is a multi-platform chatbot framework designed to build conversational bots that operate across different messaging services using a unified interface. It provides a core system for multi-platform development, utilizing a platform adaptation layer to translate service-specific API payloads into a standardized internal format. The framework features a conversational dialog manager that coordinates multi-turn interactions through state-tracking, branching logic, and scripted flows. It employs a message processing middleware pipeline to intercept, normalize, and enrich incoming and outgoi

    Provides a test client to run unit tests against conversation dialogs to ensure logic correctness.

    TypeScriptbotbot-applicationbotkit
    عرض على GitHub↗11,585
  • elsa-workflows/elsa-coreالصورة الرمزية لـ elsa-workflows

    elsa-workflows/elsa-core

    7,629عرض على GitHub↗

    Elsa Core is a workflow engine framework designed for defining, executing, and managing long-running business processes. It functions as a distributed workflow orchestrator and event-driven trigger system, capable of operating as a multi-tenant platform with secure data isolation. The project distinguishes itself through a flexible approach to workflow definitions, supporting a visual drag-and-drop designer, programmatic C# definitions, and portable JSON specifications. It provides a highly extensible architecture allowing for the development of custom activities and the use of a dynamic expr

    Allows developers to isolate and verify individual activity logic using dedicated test fixtures.

    C#csharpdotnetelsa
    عرض على GitHub↗7,629
  • nalexn/clean-architecture-swiftuiالصورة الرمزية لـ nalexn

    nalexn/clean-architecture-swiftui

    6,571عرض على GitHub↗

    This is a demonstration and template project that applies Clean Architecture principles to SwiftUI application development. It implements a layered architecture that separates presentation, business logic, and data access into independent layers, with unidirectional data flow managed through a single immutable app store that serves as the sole source of truth for all screens. The project distinguishes itself through its implementation of interactor-driven business logic, where all domain rules and workflows live in stateless objects that receive requests and update the central store. Dependen

    Provides full test coverage for both business logic interactors and SwiftUI views through isolated testing.

    Swiftarchitectureclean-architecturecleanarchitecture
    عرض على GitHub↗6,571
  1. Home
  2. Testing & Quality Assurance
  3. Software Testing
  4. Testing Frameworks
  5. Unit
  6. Unit Testing
  7. Activity Logic Testing

استكشف الوسوم الفرعية

  • Conversation Flow TestingTesting utilities for verifying the behavioral correctness of multi-turn conversational dialogs. **Distinct from Activity Logic Testing:** Distinct from Activity Logic Testing: specifically targets the sequential flow of conversational dialogs rather than isolated workflow activities.
  • Interactor and View TestingsVerifies both the interactor logic and the view behavior with full test coverage, including UI tests via a view inspection library. **Distinct from Activity Logic Testing:** Distinct from Activity Logic Testing: covers both business logic (interactors) and UI (views) testing, not just workflow activity logic.