Это видео недоступно.
Сожалеем об этом.

Laravel Feature or Unit Tests: The Difference

Поделиться
HTML-код
  • Опубликовано: 14 авг 2024
  • Example of the unit test, comparing it to feature tests and discussing WHEN to use which types of tests.
    My full course "Laravel Testing for Beginners": laraveldaily.t...
    - - - - -
    Support the channel by checking out my products:
    - My Laravel courses membership: laraveldaily.t...
    - Laravel QuickAdminPanel: bit.ly/quickad...
    - Livewire Kit Components: livewirekit.com
    - - - - -
    Other places to follow:
    - My weekly Laravel newsletter: bit.ly/laravel-...
    - My personal Twitter: / povilaskorop

Комментарии • 27

  • @mikusano4277
    @mikusano4277 Месяц назад

    This video gave me clear understanding about the concept of tests. Thank you!

  • @gaofan2856
    @gaofan2856 Год назад +1

    Perfect video format. Watching your channel on daily basis while having breakfast. Please keep going with such short videos.

  • @KlethonioFerreira
    @KlethonioFerreira Месяц назад

    Unit tests don't have access to facades by default so you would have to change the "extends TestCase", in the end you would have a Feature Test, if you make very complex.

  • @JouvaMoufette
    @JouvaMoufette Год назад +3

    An interesting thought I have regarding the mistake that was made a few times with a leading zero on time:
    I feel that if this was a real project, and there was no specific requirements stating how it should be formatted for a particular reason, I'd argue that if you're getting confused over the time, the time you keep thinking it was honestly just should be the way the time gets formatted.
    Obviously this was just for demo purposes, but I feel that if something is confusing in how software behaves, it's a bug.

  • @limpiadora
    @limpiadora Год назад +2

    I also heard that unit test usually runs faster because they don't interact with IO, and that's very important in CI/CD setup.

  • @danielj4860
    @danielj4860 Год назад +2

    I personally write a very high level test to ensure the feature is working as expected generally. For edge cases I'll write a unit test when needed. I only see value in tests to allow for future refactoring jobs to go smoothly. The reality in 90% of the time tests dont bring much value to the company in comparison to spending time writing new features. I would suggest looking up theprimeagen/theo unit test on youtube for a good discussion.

  • @tprinty
    @tprinty Год назад

    Glad Everyone found this useful

  • @techjeed9542
    @techjeed9542 Год назад

    thanks for this video, now I understand how laravel test works

  • @xadierz1816
    @xadierz1816 Год назад

    Thanks so much for your thoughtful and detailed videos! On to the soft!

  • @mayanksgajjar
    @mayanksgajjar Год назад

    Thanks for sharing such a valuable information with us 😊

  • @muhammadumarsotvoldiev8768
    @muhammadumarsotvoldiev8768 7 месяцев назад

    Thank you very much

  • @26kito
    @26kito Год назад +3

    Hey povillas, just wanna thank you for your explanation about the difference between feature and unit test. Anyway, can you give us video about testing simple crud? I'm still confused with how to use test

    • @LaravelDaily
      @LaravelDaily  Год назад +3

      I've created a course about it: laraveldaily.teachable.com/p/laravel-testing-for-beginners-phpunit-and-pest

  • @jjplays404
    @jjplays404 Год назад +1

    I was just waiting for this

  • @llBestBoyll
    @llBestBoyll Год назад

    really useful one thanks man ❤️

  • @Shyloo
    @Shyloo Год назад

    you are the best!

  • @free2idol1
    @free2idol1 Год назад

    I have a gaming project in which one of the apis is to serve 2 functionalities:

    - assigning mission to user (mission is some sort of quest that once getting complete, user'd get rewards).
    - fetching a list of missions currently assigned to user.
    Each functionality has very complex logic inside and each requires seeding to make the test running.
    So if I want to test if these 2 functionalities, should it be called unit test or feature test?
    If its called unit test, meaning it would not require any seeding or DB call but there must be DB call in both cases.
    But how could it be called feature test when they are not the whole api end point?
    Any insight would be much appreciated.

    • @LaravelDaily
      @LaravelDaily  Год назад +1

      I guess I would call "feature test" any test that touches a DB.

  • @hadizarrabi8192
    @hadizarrabi8192 5 месяцев назад

    cool

  • @isabelpino1987
    @isabelpino1987 Год назад

    my soft and no content plays, I would really appreciate so guidance on how to fix tNice tutorials problem so I can actually move pass tNice tutorials, thank

  • @firdavs.ibodullayev
    @firdavs.ibodullayev Год назад

    I did not know about it

  • @razvancomsa2276
    @razvancomsa2276 Год назад

    Are api requests tests feature or unit tests ?

  • @djurdjabarjaktarevic3707
    @djurdjabarjaktarevic3707 Год назад

    wondering if u would be willing to collab to make a . TNice tutorials would be my first and I would understand and apprehensions you may

  • @ricko13
    @ricko13 Год назад +1

    I always skip testing 🦋

  • @alexkhonko4115
    @alexkhonko4115 Год назад

    most of your test should be feature test
    lol what?)) how about test pyramid?

    • @paulocardoso670
      @paulocardoso670 Год назад

      Since I started to work with nodeJS many things have changed, testing with nodeJS (jest) it makes more sense and it's easier to write unit tests but for laravel projects it's so much easier to write feature tests, I'd say "it depends"