Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 698 Bytes

File metadata and controls

35 lines (25 loc) · 698 Bytes

QtTest — Qt использование QtTest вместе с travis-ci.org

About

Qt desktop application demonstrating widgets, signals/slots, and cross-platform GUI development.

Prerequisites

  • Qt 5.x
  • C++ compiler (GCC/Clang/MSVC)
  • qmake

Build & Run

qmake
make

Development Guidelines

Code Style

  • Follow standard C++ conventions
  • Keep code clean and well-organized
  • Use meaningful variable and method names

Git Workflow

  • Write clear, descriptive commit messages
  • One logical change per commit
  • Test before committing

Testing

  • Write tests for new functionality
  • Run the full test suite before pushing
  • Keep tests focused and independent