Domande taggate «testing»

Il test del software è qualsiasi attività volta a valutare un attributo o capacità di un programma o sistema e determinare che soddisfa i risultati richiesti.


30
Unit Testing C Code [chiuso]
Chiuso. Questa domanda non soddisfa le linee guida Stack Overflow . Al momento non accetta risposte. Vuoi migliorare questa domanda? Aggiorna la domanda in modo che sia in argomento per Stack Overflow. Chiuso 5 anni fa . Quest'estate ho lavorato su un sistema embedded scritto in chiaro C. Era un …












9
Come affermare correttamente che un'eccezione viene sollevata in Pytest?
Codice: # coding=utf-8 import pytest def whatever(): return 9/0 def test_whatever(): try: whatever() except ZeroDivisionError as exc: pytest.fail(exc, pytrace=True) Produzione: ================================ test session starts ================================= platform linux2 -- Python 2.7.3 -- py-1.4.20 -- pytest-2.5.2 plugins: django, cov collected 1 items pytest_test.py F ====================================== FAILURES ====================================== ___________________________________ test_whatever ____________________________________ def test_whatever(): …

14
Come si esegue un singolo file test / specifica in RSpec?
Voglio essere in grado di eseguire i test di un singolo file di specifiche, ad esempio per il file che sto modificando. rake specesegue tutte le specifiche. Il mio progetto non è un progetto Rails, quindi rake spec:docnon funziona. Non so se questo è importante, ma ecco la mia struttura …
282 ruby  testing  rspec 

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.