Xcepto 10.0.0 Announcement
· One min read
I'm happy to announce, that Xcepto version 10 is coming soon!
It brings a bunch of changes, improving the readability of tests even further.
Among these changes are:
- Builders for assembling states with shared methods like
.WithName("MyState") - Extension methods replacing
var adapter = builder.RegisterAdapter(new Adapter())withvar adapter = builder.AddRestAdapter().Build(). This opens up the opportunity to standardize adapter creation with builder methods likeWithSomething()that can be shared across adapters. - Promised values will allow users to capture the future results of steps and use them for following steps.
To achieve that,
Promise<MyResult>will be passable to state builders as an argument.
There will be more detailed information coming soon!
