https://join.slack.com/t/rokudevelopers ... mUxOTdlNTElet me know if that works.
and yes, I hope to stick around - my main gig is VR/cross platform Xamarin/native; but I actually really enjoy this roku m'larky - if I get enough work, I'll build out loads of tools. Already got plenty to share; like more comfy unit testing: https://github.com/georgejecook/unit-testing-framework which makes test up _really_ easy and gives you solo/ignore for suites and test cases. Still WIP. I've got more in the pipeline too.
Example of what my unit test files look like since my changes:
'@TestSuite [ETC] ExampleTestComponent test suite
'Note the ETC__ name space, and me putting [ETC] in the suite name, is not require. I just do it coz it works for me for namepsacing/readability
'@Setup
function ETC__SetUp()
? "setting up test suite for " ; m.Name
end function
'@BeforeEach
function ETC__BeforeEach()
end function
'@Test
function ETC__basicTest() As String
return m.AssertEqual("true", "true")
end function
'@Ignore
'@Test
function ETC__basicTest() As String
'This test is ignored
return m.AssertEqual("true", "true")
end function
George Cook
https://georgejecook.github.io/
https://linkedin.com/in/georgejecook/
Roku developers slack group (https://join.slack.com/t/rokudevelopers/shared_invite/zt-4vw7rg6v-NH46oY7hTktpRIBM_zGvwA) : georgejecook
Contact me on roku developer slack group, or via pm to discuss consultancy/work opportunities/rooibos unit testing framework